From 6e5c56ce4bc526d32b00a11696bede1256f16104 Mon Sep 17 00:00:00 2001 From: Chaeil Yun Date: Fri, 26 Apr 2024 17:29:02 -0400 Subject: [PATCH] made improvements to error message for basic --- testing/local_testing/local_test_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/local_testing/local_test_test.py b/testing/local_testing/local_test_test.py index e1003925f..e3e434294 100644 --- a/testing/local_testing/local_test_test.py +++ b/testing/local_testing/local_test_test.py @@ -12,7 +12,7 @@ result_index = [ (1, 1, 2) ] -@pytest.mark.parametrize("a, b", "expected_result", result_index) +@pytest.mark.parametrize("a", "b, expected_result", result_index) def test_add(a, b, expected_result):