Skip to content

Commit e1ead00

Browse files
committed
Remove NOLINTs
1 parent ee7e7a4 commit e1ead00

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/core/task/tests/task_tests.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,21 +153,21 @@ TEST(task_tests, check_empty_order_disabled_valgrind) {
153153
EXPECT_DEATH_IF_SUPPORTED(destroy_function(), ".*ORDER OF FUNCTIONS IS NOT RIGHT.*");
154154
}
155155

156-
TEST_NOLINT(task_tests, premature_postprocessing_no_steps) {
156+
TEST(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_NOLINT(test_task.PostProcessing());
160+
ASSERT_NO_THROW(test_task.PostProcessing());
161161
};
162162
EXPECT_DEATH_IF_SUPPORTED(destroy_function(), ".*ORDER OF FUNCTIONS IS NOT RIGHT.*");
163163
}
164164

165-
TEST_NOLINT(task_tests, premature_postprocessing_after_preprocessing) {
165+
TEST(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_NOLINT(test_task.PreProcessing());
170-
ASSERT_NO_THROW_NOLINT(test_task.PostProcessing());
169+
ASSERT_NO_THROW(test_task.PreProcessing());
170+
ASSERT_NO_THROW(test_task.PostProcessing());
171171
};
172172
EXPECT_DEATH_IF_SUPPORTED(destroy_function(), ".*ORDER OF FUNCTIONS IS NOT RIGHT.*");
173173
}

0 commit comments

Comments
 (0)