This commit is contained in:
Kenneth Kehl
2024-11-14 14:04:51 -08:00
parent 5276ba4ce4
commit 441b75d613

View File

@@ -194,8 +194,8 @@ 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).one()
orgX = db.session.execute(select(Organization)).scalar_one()
print(f"ORG X = {orgX.agreement_signed_on_behalf_of_name}")
org = _get_organization_query_one()
print(f"ORG A = {org.agreement_signed_on_behalf_of_name}")