summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoryura <savin@nekidaem.ru>2020-02-12 13:38:06 +0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-02-13 11:03:54 +0100
commit54b7af7eb4107f933d14da0737b539bbe38d0fc8 (patch)
tree3fc611351603cc1e11f0913420fc642980860e1f /docs
parent4070d6ceb055c35ca610629bd8f9604c0e530cf5 (diff)
Fixed #31250 -- Ignored processing instructions in assertXMLEqual()/assertXMLNotEqual().
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/tools.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 59f36d44b8..02433bbf5e 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -1613,8 +1613,8 @@ your test suite.
syntax differences. When invalid XML is passed in any parameter, an
``AssertionError`` is always raised, even if both string are identical.
- XML declaration, document type, and comments are ignored. Only the root
- element and its children are compared.
+ XML declaration, document type, processing instructions, and comments are
+ ignored. Only the root element and its children are compared.
Output in case of error can be customized with the ``msg`` argument.