Skip to content

Commit fea313c

Browse files
committed
system_tests: fix test timing on Windows
1 parent c8ca7cc commit fea313c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/system_tests/ftp_download_file.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ TEST(SystemTest, FtpDownloadStopAndTryAgain)
250250
temp_dir_downloaded.string(),
251251
false,
252252
[&prom, &got_half](Ftp::Result result, Ftp::ProgressData progress_data) {
253-
if (progress_data.bytes_transferred > 500) {
253+
if (progress_data.bytes_transferred > 200) {
254254
got_half = true;
255255
}
256256
if (result != Ftp::Result::Next) {

0 commit comments

Comments
 (0)