summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-09-21 21:52:24 +0000
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-09-21 21:52:24 +0000
commit53550424d90c8e4b4e01dbc4d26a4f7235065af6 (patch)
treebffee5685a06bfd07a7a35bb56d3d92703e4bf87 /tests
parent27109cd6267c08e36ae8dc5b526f5878349fea85 (diff)
tests: Fix PUGIXML_WCHAR_MODE build
git-svn-id: https://pugixml.googlecode.com/svn/trunk@1017 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests')
-rw-r--r--tests/test_write.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_write.cpp b/tests/test_write.cpp
index 1009d4e..523a91e 100644
--- a/tests/test_write.cpp
+++ b/tests/test_write.cpp
@@ -415,12 +415,12 @@ TEST(write_stackless)
std::basic_string<pugi::char_t> data;
for (unsigned int i = 0; i < count; ++i)
- data += "<a>";
+ data += STR("<a>");
- data += "text";
+ data += STR("text");
for (unsigned int i = 0; i < count; ++i)
- data += "</a>";
+ data += STR("</a>");
xml_document doc;
CHECK(doc.load(data.c_str()));