PyTest - Fixtures
Identify the error in this pytest fixture usage:
import pytest
@pytest.fixture(scope='modul')
def setup_env():
pass
def test_example(setup_env):
assert True
