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 7b83ea3 commit 310386a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/app/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ 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}")
org = _get_organization_query_one()
print(f"ORG A = {org}")
assert org.agreement_signed_on_behalf_of_name == "bob"
os.remove(file_name)

Expand Down

0 comments on commit 310386a

Please sign in to comment.