PyTest - Parametrize
Identify the error in this pytest code:
import pytest
@pytest.mark.parametrize('value', [10, 20])
def test_value(value):
print(value)
assert value > 0