@@ -170,7 +170,7 @@ TEST_CASE( "Logdata reading changing file", "[logdata]" )
170
170
waitUiState ( [ &logData ] { return logData.getNbLine () == 401_lcount; } );
171
171
172
172
// Check we have a bigger file
173
- REQUIRE ( changedSpy.count () >= 1 );
173
+ CHECK ( changedSpy.count () >= 1 );
174
174
REQUIRE ( logData.getNbLine () == 401_lcount );
175
175
REQUIRE ( logData.getMaxLength () == LineLength ( SL_LINE_LENGTH ) );
176
176
REQUIRE ( logData.getFileSize ()
@@ -189,7 +189,7 @@ TEST_CASE( "Logdata reading changing file", "[logdata]" )
189
189
waitUiState ( [ &logData ] { return logData.getNbLine () == 421_lcount; } );
190
190
191
191
// Check we have a bigger file
192
- REQUIRE ( changedSpy.count () >= 2 );
192
+ CHECK ( changedSpy.count () >= 2 );
193
193
REQUIRE ( logData.getNbLine () == 421_lcount );
194
194
REQUIRE ( logData.getMaxLength () == LineLength ( SL_LINE_LENGTH ) );
195
195
REQUIRE ( logData.getFileSize ()
@@ -204,7 +204,7 @@ TEST_CASE( "Logdata reading changing file", "[logdata]" )
204
204
waitUiState ( [ &logData ] { return logData.getNbLine () == 0_lcount; } );
205
205
206
206
// Check we have an empty file
207
- REQUIRE ( changedSpy.count () >= 3 );
207
+ CHECK ( changedSpy.count () >= 3 );
208
208
REQUIRE ( logData.getNbLine () == 0_lcount );
209
209
REQUIRE ( logData.getMaxLength ().get () == 0 );
210
210
REQUIRE ( logData.getFileSize () == 0LL );
0 commit comments