We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a49ed77 commit 8186495Copy full SHA for 8186495
docs/tests.py
@@ -271,12 +271,16 @@ def test_search_type_filter_no_results(self):
271
)
272
self.assertEqual(response.status_code, 200)
273
self.assertContains(response, self.active_filter, count=1)
274
- self.assertContains(response, f"{self.active_filter}API Reference</a>", html=True)
+ self.assertContains(
275
+ response, f"{self.active_filter}API Reference</a>", html=True
276
+ )
277
self.assertContains(
278
response, "0 results for <em>potato</em> in version 5.1", html=True
279
280
- response, 'Please try searching <a href="?q=potato">all documentation results</a>.', html=True
281
+ response,
282
+ 'Please try searching <a href="?q=potato">all documentation results</a>.',
283
+ html=True,
284
285
286
0 commit comments