Debugging things is fun.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-01-29 16:04:22 -05:00
parent 8907edc194
commit e64e500561
9 changed files with 37 additions and 18 deletions

View File

@@ -26,7 +26,9 @@ from tests.app.db import (
def test_get_all_organizations(admin_request, notify_db_session):
create_organization(name="inactive org", active=False, organization_type=OrganizationType.FEDERAL)
create_organization(
name="inactive org", active=False, organization_type=OrganizationType.FEDERAL
)
create_organization(name="active org", domains=["example.com"])
response = admin_request.get("organization.get_organizations", _expected_status=200)