Skip to content

Commit 8a55423

Browse files
authored
Fix format 2
1 parent f2fd633 commit 8a55423

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

modules/core/performance/tests/perf_tests.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ TEST_NOLINT(GetStringTaskTypeStandaloneTest, ThrowsIfFileMissing) {
167167
TEST_NOLINT(GetStringTaskTypeStandaloneTest, ExceptionMessageContainsPath) {
168168
const std::string missing_path = "non_existent_settings.json";
169169
EXPECT_THROW(
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);
170+
try { GetStringTaskType(ppc::core::TypeOfTask::kSEQ, missing_path); } catch (const std::runtime_error& e) {
171+
EXPECT_NE(std::string(e.what()).find(missing_path), std::string::npos);
171172
throw;
172173
},
173174
std::runtime_error);

0 commit comments

Comments
 (0)