0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-14 18:07:59 +08:00

tests: Fix PUGIXML_WCHAR_MODE compilation

git-svn-id: https://pugixml.googlecode.com/svn/trunk@1071 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
Arseny Kapoulkine 2014-10-21 03:38:30 +00:00
parent 7258aea09b
commit 3c92704c19

View File

@ -633,7 +633,7 @@ TEST_XML(xpath_paths_null_nodeset_entries, "<node attr='value'/>")
xpath_variable_set vars;
vars.set(STR("x"), ns);
xpath_node_set rs = xpath_query("$x/.", &vars).evaluate_node_set(xml_node());
xpath_node_set rs = xpath_query(STR("$x/."), &vars).evaluate_node_set(xml_node());
CHECK(rs.size() == 2);
CHECK(rs[0] == nodes[0]);