Skip to content

Commit

Permalink
ES: fix flaky test (#11640)
Browse files Browse the repository at this point in the history
I think this broke with
#11566,
I didn't find anything obvious from their changelog,
and doesn't look like something I want to spend more time on
debugging...
  • Loading branch information
stsewd authored Oct 2, 2024
1 parent 698d618 commit ed7c06e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions readthedocs/search/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,10 @@ def test_file_search_exact_match(self, client, project):
# There are two results,
# one from each version of the "kuma" project.
assert len(results) == 2
assert results[0]["version"] == {"slug": "latest"}
assert results[1]["version"] == {"slug": "stable"}
# Both versions have the same exact content.
# Order of results is not deterministic anymore for some reason,
# so we use a set to compare the results.
assert {result["version"]["slug"] for result in results} == {"stable", "latest"}
for result in results:
assert result["project"] == {"alias": None, "slug": "kuma"}
assert result["domain"] == "http://kuma.readthedocs.io"
Expand Down

0 comments on commit ed7c06e

Please sign in to comment.