PyTest - Parametrize
Identify the error in this pytest code using multiple parameters:
import pytest
@pytest.mark.parametrize('a, b', [1, 2, 3])
def test_multiply(a, b):
assert a * b > 0