Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreben committed Dec 9, 2024
1 parent a96adc1 commit 72a4f5d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/encumbrances/test_fix_encumbrances_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ def mock_get(key, *args):

case "EMAIL_ENC_SUL":
value = "[email protected]"

case "EMAIL_ENC_LAW":
value = "[email protected]"

case "EMAIL_ENC_LANE":
value = "[email protected]"

case "OKAPI_URL":
value = "okapi-test"

case "FOLIO_URL":
value = "okapi-test"

Expand Down Expand Up @@ -87,11 +87,10 @@ def test_fix_encumbrances_email_subject():
def test_email_to(mocker):
mocker.patch(
'libsys_airflow.plugins.shared.utils.send_email_with_server_name',
return_value = None
return_value=None,
)

from libsys_airflow.plugins.folio.encumbrances.email import email_to

to_addresses = email_to(fy_code='SUL2025')
assert to_addresses == ['[email protected]', '[email protected]']

0 comments on commit 72a4f5d

Please sign in to comment.