Issue in test stories with entities

I am trying to test some entities in rasa test and my issue is that in GUI it works how it suppose to work but in the test stories it has them as failed and it doesn’t recognize them as entities in the section of failed stories. For example:

In NLU:

- intent: travel_abroad
  examples: |
    - docs for travel [abroad](abroad_en)
    - docs for travelling [abroad](abroad_en)

In test stories:

- story: Test 1
  steps:
  - user: |
      docs for travel [abroad](abroad_en)
    intent: travel_abroad
  - action: utter_travel_abroad

And in failed stories:

- story: Test 1 (./tests/test_stories.yml)
  steps:
  - intent: travel_abroad  # predicted: nlu_fallback: docs for travel [abroad][{"entity": "abroad_en"}, {"entity": "abroad_en"}]
    entities:
    - abroad_en: abroad
    - abroad_en: abroad
  - action: utter_travel_abroad
2 Likes