Skip to content

Commit

Permalink
Fix references to sbc-common-components to use new camelCase serializ…
Browse files Browse the repository at this point in the history
…ation (#1790)
  • Loading branch information
seeker25 authored Oct 21, 2024
1 parent d86e3a4 commit 205cd1e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bcol-api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jobs/ftp-poller/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pay-api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pay-api/tests/unit/api/fas/test_routing_slip.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def test_link_routing_slip_invalid_status(session, client, jwt, app):
client.post("/api/v1/fas/routing-slips", data=json.dumps(child1), headers=headers)

rv = client.get(f"/api/v1/fas/routing-slips/{child.get('number')}/links", headers=headers)
assert rv.json.get("parent") is None
assert rv.json.get("parent") == {}

rv = client.patch(
f"/api/v1/fas/routing-slips/{child.get('number')}?action={PatchActions.UPDATE_STATUS.value}",
Expand Down Expand Up @@ -314,7 +314,7 @@ def test_link_routing_slip(session, client, jwt, app):
client.post("/api/v1/fas/routing-slips", data=json.dumps(parent), headers=headers)

rv = client.get(f"/api/v1/fas/routing-slips/{child.get('number')}/links", headers=headers)
assert rv.json.get("parent") is None
assert rv.json.get("parent") == {}

# attempt to link NSF, should fail
nsf = get_routing_slip_request("933458069")
Expand Down

0 comments on commit 205cd1e

Please sign in to comment.