Skip to content

Commit

Permalink
Replace unittest assertEquals with assertEqual since it was deprecate…
Browse files Browse the repository at this point in the history
…d in python 3.12
  • Loading branch information
rmccorm4 committed Nov 16, 2024
1 parent cae8258 commit b408001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/L0_backend_vllm/enabled_stream/enabled_stream_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async def request_iterator():
result, error = response
if expect_error:
self.assertIsInstance(error, InferenceServerException)
self.assertEquals(
self.assertEqual(
error.message(),
"Error generating stream: When streaming, `exclude_input_in_output` = False is not allowed.",
error,
Expand Down

0 comments on commit b408001

Please sign in to comment.