From a1d01147c06aba956b01afc0778f6ef43d47e5ab Mon Sep 17 00:00:00 2001 From: Chris Kennelly Date: Wed, 29 Jan 2025 10:42:06 -0800 Subject: [PATCH] Reformat whitespace. PiperOrigin-RevId: 721031835 Change-Id: I7ebb806858baf06ec9ca429528f7dcaa30d8d095 --- tcmalloc/testing/memory_errors_test.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tcmalloc/testing/memory_errors_test.cc b/tcmalloc/testing/memory_errors_test.cc index e17fb8198..c24d01962 100644 --- a/tcmalloc/testing/memory_errors_test.cc +++ b/tcmalloc/testing/memory_errors_test.cc @@ -657,10 +657,10 @@ TEST_F(TcMallocTest, MismatchedSizeClassInFreelistInsertion) { ::operator delete(ptr, 5); } }, - "Mismatched-size-class.*size argument in the range \\[1, " - "8\\].*allocations with sizes \\[9, 16\\]" - "|size check failed" - "|alloc-dealloc-mismatch"); + absl::StrCat( + "(Mismatched-size-class.*size argument in the range \\[1, " + "8\\].*allocations with sizes \\[9, 16\\]" + ")|size check failed|alloc-dealloc-mismatch")); } } // namespace