Skip to content

Commit

Permalink
fix failing version test
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty committed Mar 1, 2024
1 parent 8b65371 commit 5ed4fd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/aibs_informatics_core/models/api/test_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ def test__build__creates_from_nothing(self):
config2 = ApiRequestConfig.build()

# TODO: This is failing for unknown reasons in github actions
assert config1.client_version == expected_client_version
assert isinstance(config1.client_version, VersionStr)
assert expected_client_version == config1.client_version
assert config2.client_version == expected_client_version
self.assertIsNone(config1.service_log_level)
self.assertEqual(config2.service_log_level, "INFO")
Expand Down

0 comments on commit 5ed4fd1

Please sign in to comment.