summaryrefslogtreecommitdiff
path: root/tests/test_xpath_paths.cpp
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-10-21 03:38:30 +0000
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-10-21 03:38:30 +0000
commit3c92704c1983361f0b5a336d1571fe1d6c6a9a53 (patch)
tree3175b98f9c52494182fe6863d3673ba6906af556 /tests/test_xpath_paths.cpp
parent7258aea09be1847b3dcc99ca389990027d4a92d3 (diff)
tests: Fix PUGIXML_WCHAR_MODE compilation
git-svn-id: https://pugixml.googlecode.com/svn/trunk@1071 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test_xpath_paths.cpp')
-rw-r--r--tests/test_xpath_paths.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_xpath_paths.cpp b/tests/test_xpath_paths.cpp
index f1d52ad..da8811d 100644
--- a/tests/test_xpath_paths.cpp
+++ b/tests/test_xpath_paths.cpp
@@ -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]);