Skip to content

Commit ee7e7a4

Browse files
committed
Add nolint
1 parent 3561e14 commit ee7e7a4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

modules/core/task/tests/task_tests.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ TEST_NOLINT(task_tests, premature_postprocessing_no_steps) {
157157
auto destroy_function = [] {
158158
std::vector<float> in(20, 1);
159159
ppc::test::task::TestTask<std::vector<float>, float> test_task(in);
160-
ASSERT_NO_THROW(test_task.PostProcessing());
160+
ASSERT_NO_THROW_NOLINT(test_task.PostProcessing());
161161
};
162162
EXPECT_DEATH_IF_SUPPORTED(destroy_function(), ".*ORDER OF FUNCTIONS IS NOT RIGHT.*");
163163
}
@@ -166,8 +166,8 @@ TEST_NOLINT(task_tests, premature_postprocessing_after_preprocessing) {
166166
auto destroy_function = [] {
167167
std::vector<float> in(20, 1);
168168
ppc::test::task::TestTask<std::vector<float>, float> test_task(in);
169-
ASSERT_NO_THROW(test_task.PreProcessing());
170-
ASSERT_NO_THROW(test_task.PostProcessing());
169+
ASSERT_NO_THROW_NOLINT(test_task.PreProcessing());
170+
ASSERT_NO_THROW_NOLINT(test_task.PostProcessing());
171171
};
172172
EXPECT_DEATH_IF_SUPPORTED(destroy_function(), ".*ORDER OF FUNCTIONS IS NOT RIGHT.*");
173173
}

0 commit comments

Comments
 (0)