Skip to content

Commit

Permalink
Update test_parfor.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
vlkale authored Apr 5, 2024
1 parent 57a66fc commit a0a8483
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/sampler/test_parfor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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")));
Expand Down

0 comments on commit a0a8483

Please sign in to comment.