Skip to content

Commit 0f7c73a

Browse files
authored
fix(plugins/consume): rename folder (#1897)
1 parent 646ce03 commit 0f7c73a

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

src/cli/pytest_commands/consume.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def get_static_test_paths(command_name: str, is_hive: bool) -> List[Path]:
4242
if command_name == "hive":
4343
commands = ["rlp", "engine"]
4444
static_test_paths = [
45-
base_path / "simulators" / "hive_tests" / f"test_via_{cmd}.py" for cmd in commands
45+
base_path / "simulators" / "simulator_logic" / f"test_via_{cmd}.py" for cmd in commands
4646
]
4747
elif command_name in ["engine", "rlp"]:
4848
static_test_paths = [
49-
base_path / "simulators" / "hive_tests" / f"test_via_{command_name}.py"
49+
base_path / "simulators" / "simulator_logic" / f"test_via_{command_name}.py"
5050
]
5151
elif command_name == "direct":
5252
static_test_paths = [base_path / "direct" / "test_via_direct.py"]

0 commit comments

Comments
 (0)