From ffbbb85267fdf026ed1395bd3a95e568b00f1b62 Mon Sep 17 00:00:00 2001 From: Vivek Kale <11766050+vlkale@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:25:31 -0700 Subject: [PATCH] test_parfor.cpp: remove count for number of times --- tests/sampler/test_parfor.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/sampler/test_parfor.cpp b/tests/sampler/test_parfor.cpp index 2aa0c11a2..fcfe70693 100644 --- a/tests/sampler/test_parfor.cpp +++ b/tests/sampler/test_parfor.cpp @@ -69,18 +69,6 @@ TEST(SamplerTest, ktoEnvVarDefault) { EXPECT_THAT(output.str(), HasSubstr(matcher)); } // end TEST - EXPECT_THAT(output.str(), Contains.Times(2, "calling child-begin function...")); - - EXPECT_THAT(output.str(), - Contains.Times(2, - "finished with child-begin function.")); - - EXPECT_THAT(output.str(), Contains.Times( - 2, "calling child-end function...")); - - EXPECT_THAT(output.str(), - Contains.Times(2, - "finished with child-end function.")); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: FATAL: No child library of " "sampler utility library to call")));