Skip to content

Commit

Permalink
fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbo committed Aug 15, 2023
1 parent a494e30 commit e380242
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/shared/importers/test_rasa.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def test_rasa_file_importer(project: Text):
AnySlot(SESSION_START_METADATA_SLOT, mappings=[{}]),
]
assert domain.entities == []
assert len(domain.action_names_or_texts) == 7 + len(DEFAULT_ACTION_NAMES)
assert len(domain.responses) == 7
assert len(domain.action_names_or_texts) == 6 + len(DEFAULT_ACTION_NAMES)
assert len(domain.responses) == 6

stories = importer.get_stories()
assert len(stories.story_steps) == 5
Expand Down

0 comments on commit e380242

Please sign in to comment.