From b10b243b54b2c73e9e8ace99854925e61d3dd1cb Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 7 Jun 2020 18:11:41 +0300 Subject: [PATCH] lib/utils: update unit test --- lib/utils/test-sexp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/test-sexp.cc b/lib/utils/test-sexp.cc index 1bbbfe85..3414dc06 100644 --- a/lib/utils/test-sexp.cc +++ b/lib/utils/test-sexp.cc @@ -55,7 +55,7 @@ test_parser() check_parse(R"("foo\"bar\"cuux")", "\"foo\\\"bar\\\"cuux\""); check_parse(R"("foo -bar")", "\"foo\\nbar\""); +bar")", "\"foo\nbar\""); } static void @@ -107,7 +107,7 @@ test_props() Node expr = Node::make_list(std::move(seq)); assert_equal(expr.to_string(), - "(:foo \"b\\303\\244r\" :cuux 123 :flub fnord :boo (\"foo\" 123 blub))"); + "(:foo \"b\303\244r\" :cuux 123 :flub fnord :boo (\"foo\" 123 blub))"); } int