From db2511ed9433d5125b95026d29db511c0679ebbc Mon Sep 17 00:00:00 2001 From: danc Date: Wed, 18 Oct 2023 12:44:55 +0100 Subject: [PATCH] chore: moved test_command_processor.py into processor tests folder. --- .../dialogue_understanding/{commands => processor}/conftest.py | 0 .../{commands => processor}/test_command_processor.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/dialogue_understanding/{commands => processor}/conftest.py (100%) rename tests/dialogue_understanding/{commands => processor}/test_command_processor.py (97%) diff --git a/tests/dialogue_understanding/commands/conftest.py b/tests/dialogue_understanding/processor/conftest.py similarity index 100% rename from tests/dialogue_understanding/commands/conftest.py rename to tests/dialogue_understanding/processor/conftest.py diff --git a/tests/dialogue_understanding/commands/test_command_processor.py b/tests/dialogue_understanding/processor/test_command_processor.py similarity index 97% rename from tests/dialogue_understanding/commands/test_command_processor.py rename to tests/dialogue_understanding/processor/test_command_processor.py index 0e623c57c2a4..a0ba44a6f00a 100644 --- a/tests/dialogue_understanding/commands/test_command_processor.py +++ b/tests/dialogue_understanding/processor/test_command_processor.py @@ -14,7 +14,7 @@ from rasa.shared.core.flows.flow import FlowsList from rasa.shared.core.trackers import DialogueStateTracker from rasa.shared.core.flows.yaml_flows_io import flows_from_str -from tests.dialogue_understanding.commands.conftest import start_bar_user_uttered +from tests.dialogue_understanding.processor.conftest import start_bar_user_uttered def test_properly_prepared_tracker(tracker: DialogueStateTracker):