final addition for comments

This commit is contained in:
Chaeil Yun 2024-04-26 17:34:21 -04:00
parent 6e5c56ce4b
commit 04b028a46e
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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):