testing for 2 in quotes and one not

This commit is contained in:
Chaeil Yun 2024-04-26 17:22:28 -04:00
parent ac15d1ec1d
commit 64ae653745
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ result_index = [
(1, 1, 2) (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): def test_add(a, b, expected_result):