From 286fb73b6962d197ed0cf041755fb724cfe08600 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Fri, 5 Mar 2021 15:20:31 -0500 Subject: [PATCH] Fixed #32507 -- Added link to assertHTMLEqual() in assertInHTML() docs. --- docs/topics/testing/tools.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index fba515b4fa..7b3ceb3c81 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -1661,7 +1661,8 @@ your test suite. of ``needle`` occurrences will be strictly verified. Whitespace in most cases is ignored, and attribute ordering is not - significant. The passed-in arguments must be valid HTML. + significant. The passed-in arguments must be valid HTML. See + :meth:`~SimpleTestCase.assertHTMLEqual` for more details. .. method:: SimpleTestCase.assertJSONEqual(raw, expected_data, msg=None)