From a0a8483e6d70bdbbc2fd769754b0bd980e3b5419 Mon Sep 17 00:00:00 2001 From: Vivek Kale <11766050+vlkale@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:31:45 -0700 Subject: [PATCH] Update test_parfor.cpp --- tests/sampler/test_parfor.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/sampler/test_parfor.cpp b/tests/sampler/test_parfor.cpp index 64ac8b883..e9fab33b5 100644 --- a/tests/sampler/test_parfor.cpp +++ b/tests/sampler/test_parfor.cpp @@ -71,16 +71,16 @@ TEST(SamplerTest, ktoEnvVarDefault) { } // end TEST EXPECT_THAT(output.str(), - Contains.Times(AtMost(2), "calling child-begin function...")); + Contains.::testing:::Times(AtMost(2), "calling child-begin function...")); EXPECT_THAT(output.str(), - Contains.Times(AtMost(2), "finished with child-begin function.")); + Contains.::testing::Times(AtMost(2), "finished with child-begin function.")); EXPECT_THAT(output.str(), - Contains.Times(AtMost(2), "calling child-end function...")); + Contains.::testing::Times(AtMost(2), "calling child-end function...")); EXPECT_THAT(output.str(), - Contains.Times(AtMost(2), "finished with child-end function.")); + Contains.::testing::Times(AtMost(2), "finished with child-end function.")); EXPECT_THAT(output.str(), Not(HasSubstr("KokkosP: FATAL: No child library of " "sampler utility library to call")));