diff --git a/tests/cancun/eip1153_tstore/conftest.py b/tests/cancun/eip1153_tstore/conftest.py deleted file mode 100644 index 0d391b4229..0000000000 --- a/tests/cancun/eip1153_tstore/conftest.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -Pytest plugin local to EIP-1153 tests. -""" -from typing import List - -import pytest - - -@pytest.fixture(autouse=True) -def eips(eip_enabled: bool = True) -> List[int]: - """ - Returns a list of EIPs to enable in the client t8n tool. - """ - return [1153] if eip_enabled else []