Skip to content

Commit 28527bf

Browse files
committed
Replace 'indx' in search query within test to explicitly non-matching 'abracadabra'
1 parent 5a5a5f6 commit 28527bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readthedocs/search/tests/test_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def test_search_advanced_query_detection(self, api_client):
526526
search_params = {
527527
"project": project.slug,
528528
"version": version.slug,
529-
"q": "indx",
529+
"q": "abracadabra",
530530
}
531531
resp = self.get_search(api_client, search_params)
532532
assert resp.status_code == 200
@@ -539,7 +539,7 @@ def test_search_advanced_query_detection(self, api_client):
539539
search_params = {
540540
"project": project.slug,
541541
"version": version.slug,
542-
"q": '"indx"',
542+
"q": '"abracadabra"',
543543
}
544544
resp = self.get_search(api_client, search_params)
545545
assert resp.status_code == 200

0 commit comments

Comments
 (0)