Selenium Python - Data-Driven Testing
Examine this data-driven test snippet and identify the logical error:
@pytest.mark.parametrize('num', [1, 2, 3])
def test_is_odd(num):
assert num % 2 == 0
