Skip to content

Commit

Permalink
Swap the order of tags being added in tests (not alphabetical anymore)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbiggs committed Jan 28, 2025
1 parent 2b6f9f5 commit 66603d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etna/api/tests/test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ def setUpTestData(cls):
cls.article.body = cls.BODY_JSON
cls.article.save()

cls.focused_article.tags.add(cls.witchcraft)
cls.focused_article.tags.add(cls.medicine)
cls.focused_article.tags.add(cls.witchcraft)
cls.focused_article.save()

cls.article_index.featured_article = cls.article
Expand Down

0 comments on commit 66603d0

Please sign in to comment.