diff --git a/tests/sampler/test_parfor.cpp b/tests/sampler/test_parfor.cpp index bf068b95d..35a8c0ec0 100644 --- a/tests/sampler/test_parfor.cpp +++ b/tests/sampler/test_parfor.cpp @@ -71,18 +71,19 @@ TEST(SamplerTest, ktoEnvVarDefault) { EXPECT_THAT(output.str(), ::testing::Contains("finished with child-begin function.") .::testing::Times("2")); - EXPECT_THAT( - output.str(), - ::testing::Contains("calling child-end function...").::testing::Times("2")); + EXPECT_THAT(output.str(), ::testing::Contains("calling child-end function...") + .::testing::Times("2")); EXPECT_THAT(output.str(), ::testing::Contains("finished with child-end function.") .::testing::Times("2")); - EXPECT_THAT(output.str(), - ::testing::Not(::testing::HasSubstr("KokkosP: FATAL: No child library of sampler utility library to call"))); + EXPECT_THAT( + output.str(), + ::testing::Not(::testing::HasSubstr("KokkosP: FATAL: No child library of " + "sampler utility library to call"))); - EXPECT_THAT(output.str(), - ::testing::Not(::testing::HasSubstr("KokkosP: FATAL: Kokkos Tools Programming " - "Interface's tool-invoked Fence is NULL!"))); + EXPECT_THAT(output.str(), ::testing::Not(::testing::HasSubstr( + "KokkosP: FATAL: Kokkos Tools Programming " + "Interface's tool-invoked Fence is NULL!"))); }