Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mvadari committed Jan 28, 2025
1 parent f928e03 commit da5263b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/integration/reqs/test_simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ async def test_basic_functionality(self, client):
)

self.assertEqual(response.type, "response")
self.assertIn("meta", response.result, "Key 'meta' not found in simulate response.")
self.assertIsInstance(response.result["meta"], dict, "'meta' should be a dictionary.")
self.assertIn(
"meta", response.result, "Key 'meta' not found in simulate response."
)
self.assertIsInstance(
response.result["meta"], dict, "'meta' should be a dictionary."
)
self.assertEqual(response.result["engine_result"], "tesSUCCESS")
self.assertEqual(response.result["engine_result_code"], 0)
self.assertFalse(response.result["applied"])

0 comments on commit da5263b

Please sign in to comment.