diff options
Diffstat (limited to 'tests/test.cpp')
-rw-r--r-- | tests/test.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test.cpp b/tests/test.cpp index d12278b..be0d86b 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -128,6 +128,9 @@ xpath_node_set_tester::xpath_node_set_tester(const pugi::xpath_node_set& set, co {
result = set;
+ // only sort unsorted sets so that we're able to verify reverse order for some axes
+ if (result.type() == pugi::xpath_node_set::type_unsorted) result.sort();
+
if (result.empty())
{
document_order = 0;
|