diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-09-21 21:52:24 +0000 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-09-21 21:52:24 +0000 |
commit | 53550424d90c8e4b4e01dbc4d26a4f7235065af6 (patch) | |
tree | bffee5685a06bfd07a7a35bb56d3d92703e4bf87 | |
parent | 27109cd6267c08e36ae8dc5b526f5878349fea85 (diff) |
tests: Fix PUGIXML_WCHAR_MODE build
git-svn-id: https://pugixml.googlecode.com/svn/trunk@1017 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | tests/test_write.cpp | 6 |
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())); |