Skip to content

Commit

Permalink
Fix sporadic test failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzohrab committed Aug 26, 2024
1 parent 8745c95 commit c393930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/features/test_term_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def then_term_tags(language, term, expected):
pstring = ", ".join([p.text for p in t.parents])
if pstring == "":
pstring = "-"
tstring = ", ".join([p.text for p in t.term_tags])
tstring = ", ".join(sorted([p.text for p in t.term_tags]))
if tstring == "":
tstring = "-"
actual = [
Expand Down

0 comments on commit c393930

Please sign in to comment.