Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Oct 29, 2024
1 parent f407851 commit 1fad4bb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ async def test_get_service_specifications_of_unknown_service_returns_default_spe
assert service_specs

assert (
service_specs
== client.app.state.settings.CATALOG_SERVICES_DEFAULT_SPECIFICATIONS
service_specs.model_dump()
== client.app.state.settings.CATALOG_SERVICES_DEFAULT_SPECIFICATIONS.model_dump()
)


Expand Down Expand Up @@ -207,8 +207,8 @@ async def test_get_service_specifications(
service_specs = ServiceSpecificationsGet.model_validate(response.json())
assert service_specs
assert (
service_specs
== client.app.state.settings.CATALOG_SERVICES_DEFAULT_SPECIFICATIONS
service_specs.model_dump()
== client.app.state.settings.CATALOG_SERVICES_DEFAULT_SPECIFICATIONS.model_dump()
)

everyone_gid, user_gid, team_gid = user_groups_ids
Expand Down

0 comments on commit 1fad4bb

Please sign in to comment.