PyTest - Parametrize
Identify the error in the following code snippet that uses conditional parametrize:
import pytest
@pytest.mark.parametrize('val', [
pytest.param(10, marks=pytest.mark.skipif('sys.version_info < (3,8)', reason='Old Python')),
20
])
def test_val(val):
assert val > 0
