summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-09-13 18:58:42 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-09-13 18:58:42 +0000
commit72bc1f0807f2f5a2c03ed150cf381a74e989c783 (patch)
tree81f02de41a118bc0d76b012b25cb7d56a996e6fc /tests
parent000b421873a03c434be59029df988f0381c40a1a (diff)
tests: Fixed wchar mode tests
git-svn-id: http://pugixml.googlecode.com/svn/trunk@723 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests')
-rw-r--r--tests/test_xpath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_xpath.cpp b/tests/test_xpath.cpp
index 1c1d413..0f8149f 100644
--- a/tests/test_xpath.cpp
+++ b/tests/test_xpath.cpp
@@ -290,7 +290,7 @@ TEST(xpath_large_node_set)
xml_document doc;
CHECK(doc.load_file("tests/data/large.xml"));
- xpath_node_set ns = doc.select_nodes("//*");
+ xpath_node_set ns = doc.select_nodes(STR("//*"));
CHECK(ns.size() == 10001);
}