diff --git a/tests/ulib/concorrency/countdown_latch_unittest.cpp b/tests/ulib/concorrency/countdown_latch_unittest.cpp index a9ebcf6..1d226db 100644 --- a/tests/ulib/concorrency/countdown_latch_unittest.cpp +++ b/tests/ulib/concorrency/countdown_latch_unittest.cpp @@ -51,5 +51,5 @@ TEST(CoundownLatch, Assert) latch.CountDown(); // NOTE https://github.com/google/googletest/blob/main/docs/advanced.md#death-tests-and-threads GTEST_FLAG_SET(death_test_style, "threadsafe"); - EXPECT_DEATH(latch.CountDown(), "Assertion.*"); + EXPECT_DEATH(latch.CountDown(), ""); }