@@ -153,21 +153,21 @@ TEST(task_tests, check_empty_order_disabled_valgrind) {
153
153
EXPECT_DEATH_IF_SUPPORTED (destroy_function (), " .*ORDER OF FUNCTIONS IS NOT RIGHT.*" );
154
154
}
155
155
156
- TEST_NOLINT (task_tests, premature_postprocessing_no_steps) {
156
+ TEST (task_tests, premature_postprocessing_no_steps) {
157
157
auto destroy_function = [] {
158
158
std::vector<float > in (20 , 1 );
159
159
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 ());
161
161
};
162
162
EXPECT_DEATH_IF_SUPPORTED (destroy_function (), " .*ORDER OF FUNCTIONS IS NOT RIGHT.*" );
163
163
}
164
164
165
- TEST_NOLINT (task_tests, premature_postprocessing_after_preprocessing) {
165
+ TEST (task_tests, premature_postprocessing_after_preprocessing) {
166
166
auto destroy_function = [] {
167
167
std::vector<float > in (20 , 1 );
168
168
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 ());
171
171
};
172
172
EXPECT_DEATH_IF_SUPPORTED (destroy_function (), " .*ORDER OF FUNCTIONS IS NOT RIGHT.*" );
173
173
}
0 commit comments