Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Sep 30, 2023
1 parent be7a16a commit b4a472c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_parse_status_response(self):
times=TimeData.from_dict(self.status_response_data),
result_metadata=None,
queue_position=None,
error=None
error=None,
)
self.assertEqual(
expected, ExecutionStatusResponse.from_dict(self.status_response_data)
Expand Down Expand Up @@ -161,7 +161,7 @@ def test_parse_status_response_completed(self):
times=TimeData.from_dict(self.status_response_data),
result_metadata=ResultMetadata.from_dict(self.result_metadata_data),
queue_position=None,
error=None
error=None,
),
ExecutionStatusResponse.from_dict(self.status_response_data_completed),
)
Expand Down

0 comments on commit b4a472c

Please sign in to comment.