From 64ae653745500c2a1def4b7cb1d174b0c1af12d8 Mon Sep 17 00:00:00 2001 From: Chaeil Yun Date: Fri, 26 Apr 2024 17:22:28 -0400 Subject: [PATCH] testing for 2 in quotes and one not --- 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 a677697bf..e1003925f 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):