Skip to content

Commit f2fd633

Browse files
authored
Fix format
1 parent 929ec7d commit f2fd633

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

modules/core/performance/tests/perf_tests.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,7 @@ TEST_NOLINT(GetStringTaskTypeStandaloneTest, ThrowsIfFileMissing) {
167167
TEST_NOLINT(GetStringTaskTypeStandaloneTest, ExceptionMessageContainsPath) {
168168
const std::string missing_path = "non_existent_settings.json";
169169
EXPECT_THROW(
170-
try {
171-
GetStringTaskType(ppc::core::TypeOfTask::kSEQ, missing_path);
172-
} catch (const std::runtime_error& e) {
173-
EXPECT_NE(std::string(e.what()).find(missing_path), std::string::npos);
170+
try { GetStringTaskType(ppc::core::TypeOfTask::kSEQ, missing_path); } catch (const std::runtime_error& e) { EXPECT_NE(std::string(e.what()).find(missing_path), std::string::npos);
174171
throw;
175172
},
176173
std::runtime_error);

0 commit comments

Comments
 (0)