浏览代码

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");
 }