PyTest - Fixtures
Given the following pytest code, what will be the output when running the test?
import pytest
@pytest.fixture
def sample_data():
return [1, 2, 3]
def test_sum(sample_data):
assert sum(sample_data) == 6
print('Test passed')