aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2021-05-11 23:22:13 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2021-05-11 23:22:13 -0700
commit5c4225b5c90c67307f77e829dcea7fbb1df5c97a (patch)
tree57c1a13a7bfb513ea3ef4d6bb8e1afb72e4616b2
parent8cece4b9fe2db68e6ae1dc725e438268feae93a4 (diff)
downloadpugixml-5c4225b5c90c67307f77e829dcea7fbb1df5c97a.zip
pugixml-5c4225b5c90c67307f77e829dcea7fbb1df5c97a.tar.gz
pugixml-5c4225b5c90c67307f77e829dcea7fbb1df5c97a.tar.bz2
tests: Fix wchar_t build
-rw-r--r--tests/test_document.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp
index e853b61..3f27a8c 100644
--- a/tests/test_document.cpp
+++ b/tests/test_document.cpp
@@ -1815,6 +1815,6 @@ TEST(document_move_assign_empty)
doc = xml_document();
doc.append_child(STR("node2"));
- CHECK_NODE(doc, "<node2/>");
+ CHECK_NODE(doc, STR("<node2/>"));
}
#endif