aboutsummaryrefslogtreecommitdiff
path: root/tests/test_xpath_operators.cpp
diff options
context:
space:
mode:
authorWolfgang Stöggl <c72578@yahoo.de>2019-08-21 16:46:11 +0200
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2019-08-21 07:46:11 -0700
commitfdf02957533645069bbea7cd2ed85a3014b42cf3 (patch)
tree0bc364c26774035b9b28f9677e26dc37004b83c2 /tests/test_xpath_operators.cpp
parenta5568455551fda31d4b131f20583875af70c49da (diff)
downloadpugixml-fdf02957533645069bbea7cd2ed85a3014b42cf3.zip
pugixml-fdf02957533645069bbea7cd2ed85a3014b42cf3.tar.gz
pugixml-fdf02957533645069bbea7cd2ed85a3014b42cf3.tar.bz2
Fix minor typos (#286)
- Typos were found by codespell v1.15.0
Diffstat (limited to 'tests/test_xpath_operators.cpp')
-rw-r--r--tests/test_xpath_operators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_xpath_operators.cpp b/tests/test_xpath_operators.cpp
index b2bdc15..a3329c7 100644
--- a/tests/test_xpath_operators.cpp
+++ b/tests/test_xpath_operators.cpp
@@ -194,7 +194,7 @@ TEST_XML(xpath_operators_equality_node_set_node_set, "<node><c1><v>a</v><v>b</v>
CHECK_XPATH_BOOLEAN(n, STR("c1/v != c3/v"), true);
CHECK_XPATH_BOOLEAN(n, STR("c2/v != c3/v"), true);
CHECK_XPATH_BOOLEAN(n, STR("c1/v != c4/v"), true);
- CHECK_XPATH_BOOLEAN(n, STR("c1/v != c5/v"), true); // (a, b) != (a, b), since a != b, as per XPath spec (comparison operators are so not intutive)
+ CHECK_XPATH_BOOLEAN(n, STR("c1/v != c5/v"), true); // (a, b) != (a, b), since a != b, as per XPath spec (comparison operators are so not intuitive)
CHECK_XPATH_BOOLEAN(n, STR("c3/v != c6/v"), false);
CHECK_XPATH_BOOLEAN(n, STR("c1/v != x"), false);
CHECK_XPATH_BOOLEAN(n, STR("x != c1/v"), false);