From 04b028a46e673f0f8cea3313a302fcb69a3b7381 Mon Sep 17 00:00:00 2001 From: Chaeil Yun Date: Fri, 26 Apr 2024 17:34:21 -0400 Subject: [PATCH] final addition for comments --- testing/local_testing/local_test_0.py | 2 +- testing/local_testing/local_test_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/local_testing/local_test_0.py b/testing/local_testing/local_test_0.py index faab77484..218606208 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 diff --git a/testing/local_testing/local_test_test.py b/testing/local_testing/local_test_test.py index e3e434294..72ca93062 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):