PyTest - Parametrize
Given the code below, what will be printed when running the test?
import pytest
@pytest.fixture
def data(request):
return request.param * 2
@pytest.mark.parametrize('data', [3, 5], indirect=True)
def test_double(data):
print(data)