Skip to content

Commit

Permalink
fix: test after openapi upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
iharthi committed Nov 7, 2023
1 parent 842f894 commit 73d3720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def setUp(self) -> None:

def test_initial_api_key(self):
self.assertRaises(TypeError, EVRClient)
self.assertDictEqual(self.client.openapi_client.configuration.api_key, {'EVR-APIKEY': self.api_key})
self.assertDictEqual(self.client.openapi_client.configuration.api_key, {'SecretApiKey': self.api_key})

def test_initial_host(self):
self.assertEqual(self.client.openapi_client.configuration.host, self.host)
Expand Down

0 comments on commit 73d3720

Please sign in to comment.