From 945da7d83c8c2f4dfc61c8bb6d76eb91bef8536d Mon Sep 17 00:00:00 2001 From: colramos-amd Date: Tue, 12 Mar 2024 16:49:41 -0500 Subject: [PATCH] Update expected pytest value for same workload case Signed-off-by: colramos-amd --- tests/test_analyze_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_analyze_commands.py b/tests/test_analyze_commands.py index 50fd7d8632..262e914590 100644 --- a/tests/test_analyze_commands.py +++ b/tests/test_analyze_commands.py @@ -1637,7 +1637,7 @@ def test_baseline(): ], ): omniperf.main() - assert e.value.code == 0 + assert e.value.code == 1 with pytest.raises(SystemExit) as e: with patch( @@ -1652,7 +1652,7 @@ def test_baseline(): ], ): omniperf.main() - assert e.value.code == 0 + assert e.value.code == 1 @pytest.mark.misc