From 33cc984e357aa806209f110c1ae01f65790282cb Mon Sep 17 00:00:00 2001 From: dyastremsky <58150256+dyastremsky@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:29:37 -0800 Subject: [PATCH] Remove unnecessary return value Co-authored-by: Ryan McCormick --- src/c++/perf_analyzer/genai-pa/tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c++/perf_analyzer/genai-pa/tests/test_cli.py b/src/c++/perf_analyzer/genai-pa/tests/test_cli.py index 4f2cb66ed..4aaff401b 100644 --- a/src/c++/perf_analyzer/genai-pa/tests/test_cli.py +++ b/src/c++/perf_analyzer/genai-pa/tests/test_cli.py @@ -96,4 +96,4 @@ def test_arguments_model_not_provided(self): def test_exception_on_nonzero_exit(self): with pytest.raises(GenAiPAException) as e: - _ = run(["-m", "nonexistent_model"]) + run(["-m", "nonexistent_model"])