| Index: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
|
| index a17e61576cfacb9f6cadc100f50434e1611291ce..d9cbf0c49042f73af6674fb15e48d929a32232d0 100644
|
| --- a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
|
| @@ -148,19 +148,15 @@ MATCHER_P2(MemEq,
|
| p,
|
| len,
|
| std::string("pointing to memory") + (negation ? " not" : "") +
|
| - " equal to \"" +
|
| - std::string(p, len) +
|
| - "\" (length=" +
|
| - PrintToString(len) +
|
| - ")") {
|
| + " equal to \"" + std::string(p, len) +
|
| + "\" (length=" + PrintToString(len) + ")") {
|
| return memcmp(arg, p, len) == 0;
|
| }
|
|
|
| MATCHER_P(KURLEq,
|
| url_string,
|
| std::string(negation ? "doesn't equal" : "equals") + " to \"" +
|
| - url_string +
|
| - "\"") {
|
| + url_string + "\"") {
|
| KURL url(KURL(), url_string);
|
| *result_listener << "where the url is \"" << arg.GetString().Utf8().data()
|
| << "\"";
|
|
|