Skip to content

Commit

Permalink
Fix L0_implicit_state (#5595)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 committed Apr 5, 2023
1 parent cac40ca commit c47b239
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions qa/L0_implicit_state/implicit_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,10 @@ def test_request_output_not_allowed(self):
sequence_id=1,
sequence_start=True,
sequence_end=True)
self.assertTrue(
str(e.exception).startswith(
"unexpected inference output 'OUTPUT_STATE' for model"))
self.assertIn(
"unexpected inference output 'OUTPUT_STATE' for model",
str(e.exception)
)

def test_request_output(self):
triton_client = tritonhttpclient.InferenceServerClient("localhost:8000")
Expand Down

0 comments on commit c47b239

Please sign in to comment.