PyTest - Parametrize
Identify the error in this pytest code snippet:
import pytest
@pytest.mark.parametrize('val', 5, 10, 15)
def test_greater_than_zero(val):
assert val > 0