Selenium Python - Test Framework Integration (pytest)
Identify the error in this parameterized test code:
import pytest
@pytest.mark.parametrize('input, expected')
def test_double(input, expected):
assert input * 2 == expected
@pytest.mark.parametrize('input, expected', [(2, 4), (3, 6)])