Added first part of error msg fixing to python.py file

This commit is contained in:
Chaeil Yun 2024-04-25 20:36:28 -04:00
parent ababe237fd
commit ac15d1ec1d
1 changed files with 1 additions and 1 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