소스 검색

Lowered threshold for CI

Paul-Louis Ageneau 5 년 전
부모
커밋
c83196ee40
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/main.cpp

+ 1 - 1
test/main.cpp

@@ -33,7 +33,7 @@ void test_benchmark() {
 	if (goodput == 0)
 		throw runtime_error("No data received");
 
-	const size_t threshold = 10000; // 10 MB/s;
+	const size_t threshold = 5000; // 5 MB/s;
 	if (goodput < threshold)
 		throw runtime_error("Goodput is too low");
 }