Selenium Python - Test Framework Integration (pytest)
Identify the error in this parameterized test code:
@pytest.mark.parametrize('num', [1, 2, 3])
def test_is_even(num):
assert num % 2 == 0