diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-10-21 03:38:30 +0000 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-10-21 03:38:30 +0000 |
commit | 3c92704c1983361f0b5a336d1571fe1d6c6a9a53 (patch) | |
tree | 3175b98f9c52494182fe6863d3673ba6906af556 /tests | |
parent | 7258aea09be1847b3dcc99ca389990027d4a92d3 (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')
-rw-r--r-- | tests/test_xpath_paths.cpp | 2 |
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]); |