From eb6b7bd23bc0815bfd784e1a74021ce166765280 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 3 Sep 2019 19:09:17 -0700 Subject: Export of internal Abseil changes -- 552959395a367b202e00fc7680e3500e4d15a341 by Abseil Team : In span_test, correctly describe matches with negation, and remove redundant "is". negation is true when the match is negative. PiperOrigin-RevId: 267064695 GitOrigin-RevId: 552959395a367b202e00fc7680e3500e4d15a341 Change-Id: Ic876f30170e7e0008c13fdc6269462cfc5737e0f --- absl/types/span_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/absl/types/span_test.cc b/absl/types/span_test.cc index 9269f91..22467a0 100644 --- a/absl/types/span_test.cc +++ b/absl/types/span_test.cc @@ -35,7 +35,7 @@ namespace { MATCHER_P(DataIs, data, - absl::StrCat("data() is ", negation ? "is " : "isn't ", + absl::StrCat("data() ", negation ? "isn't " : "is ", testing::PrintToString(data))) { return arg.data() == data; } -- cgit v1.2.3