PyTest - Parametrize
Find the error in this pytest code:
import pytest
@pytest.mark.parametrize('a,b', [(1, 2), (3, 4)])
def test_sum(a, b):
assert a + b = 3