PyTest - Fixtures
Identify the issue in this pytest test code:
import pytest
@pytest.fixture
def number():
return 10
def test_number():
assert number == 10