summaryrefslogtreecommitdiff
path: root/tests/test_write.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_write.cpp')
-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()));