PyTest - Parametrize
Find the issue in this test code:
@pytest.mark.parametrize('x', [1, 2])
@pytest.mark.parametrize('y', [3, 4])
def test_values(x, y):
assert x + y == 5