Skip to content

Commit

Permalink
hmmm
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Kehl committed Nov 14, 2024
1 parent 310386a commit 5276ba4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/app/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ def test_populate_organization_agreement_details_from_file(
org_count = _get_organization_query_count()
assert org_count == 1
stmt = select(Organization)
orgX = db.session.execute(stmt).scalars().one()
print(f"ORG X = {orgX}")
orgX = db.session.execute(stmt).one()
print(f"ORG X = {orgX.agreement_signed_on_behalf_of_name}")
org = _get_organization_query_one()
print(f"ORG A = {org}")
print(f"ORG A = {org.agreement_signed_on_behalf_of_name}")
assert org.agreement_signed_on_behalf_of_name == "bob"
os.remove(file_name)

Expand Down

0 comments on commit 5276ba4

Please sign in to comment.