Skip to content

Commit

Permalink
Update tests for server info
Browse files Browse the repository at this point in the history
  • Loading branch information
vinulw committed Dec 11, 2024
1 parent f309c92 commit c5940d4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server/oasisapi/info/tests/test_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,7 @@ def test_user_is_authenticated___response_is_ok(self):
self.assertEqual(200, response.status_code)
self.assertTrue('version' in server_info_json)
self.assertTrue('config' in server_info_json)
self.assertTrue('components' in server_info_json)
self.assertFalse(server_info_json['version'] is str)
self.assertFalse(server_info_json['config'] is {})
self.assertFalse(server_info_json['components'] is {})

0 comments on commit c5940d4

Please sign in to comment.