From ac15d1ec1de48aed09e354cff806ff7388cf661b Mon Sep 17 00:00:00 2001 From: Chaeil Yun Date: Thu, 25 Apr 2024 20:36:28 -0400 Subject: [PATCH] Added first part of error msg fixing to python.py file --- testing/local_testing/local_test_0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/local_testing/local_test_0.py b/testing/local_testing/local_test_0.py index 2234947c1..faab77484 100644 --- a/testing/local_testing/local_test_0.py +++ b/testing/local_testing/local_test_0.py @@ -2,7 +2,7 @@ import pytest -@pytest.mark.parametrize("arg1", "arg2", [(1, 1)]) +@pytest.mark.parametrize("arg1, arg2", [(1, 1)]) def test_parametrization(arg1, arg2): assert arg1 == arg2