]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Use correct syntax for escapes 1820/head
authorAki Tuomi <cmouse@cmouse.fi>
Tue, 14 Oct 2014 17:27:45 +0000 (20:27 +0300)
committerAki Tuomi <cmouse@cmouse.fi>
Tue, 14 Oct 2014 17:27:45 +0000 (20:27 +0300)
modules/remotebackend/test-remotebackend.cc

index a4009c6b870cd1d5593dee6d6e22ba0adb869ae0..0d64dd51b8e78f7dfb635a9f7e7c2deff2a84bd0 100644 (file)
@@ -273,7 +273,7 @@ BOOST_AUTO_TEST_CASE(test_method_feedEnts3) {
    BOOST_TEST_MESSAGE("Testing feedEnts3 method");
    be->startTransaction("example.com",2);
    map<string, bool> nonterm = boost::assign::map_list_of("_udp", true)("_sip._udp", true);
-   BOOST_CHECK(be->feedEnts3(2, "example.com", nonterm, 1, "\xaa\xbb\xcc\xdd", 0));
+   BOOST_CHECK(be->feedEnts3(2, "example.com", nonterm, 1, "\u00aa\u00bb\u00cc\u00dd", 0));
    be->commitTransaction();
 }