"cacheflow/engine/arg_utils.py" did not exist on "c3442c1f6fabe54adb82d2d676920c5f31b9834e"
Commit fcfd6635 authored by Jesse Beder's avatar Jesse Beder
Browse files

Removed unicode control sequence from test, since it's not guaranteed that the source code is UTF-8

parent a2a096f2
......@@ -318,7 +318,7 @@ TEST_F(HandlerSpecTest, Ex2_17_QuotedScalars) {
EXPECT_CALL(handler, OnDocumentStart(_));
EXPECT_CALL(handler, OnMapStart(_, "?", 0));
EXPECT_CALL(handler, OnScalar(_, "?", 0, "unicode"));
EXPECT_CALL(handler, OnScalar(_, "!", 0, "Sosa did fine.\u263A"));
EXPECT_CALL(handler, OnScalar(_, "!", 0, "Sosa did fine.\xE2\x98\xBA"));
EXPECT_CALL(handler, OnScalar(_, "?", 0, "control"));
EXPECT_CALL(handler, OnScalar(_, "!", 0, "\b1998\t1999\t2000\n"));
EXPECT_CALL(handler, OnScalar(_, "?", 0, "hex esc"));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment