From 3c8be0db7296438debda515bb8d57d62c3ce1ce6 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 11 Oct 2021 19:57:35 +0300 Subject: [PATCH] tests: reduce maxn in builder_test.js.v to just 1000 for now (runs in under 200ms, vs ~240s before that) --- vlib/strings/builder_test.js.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/strings/builder_test.js.v b/vlib/strings/builder_test.js.v index e67a0f1bb7..52259c6391 100644 --- a/vlib/strings/builder_test.js.v +++ b/vlib/strings/builder_test.js.v @@ -2,7 +2,7 @@ import strings type MyInt = int -const maxn = 100000 +const maxn = 1000 fn test_sb() { mut sb := strings.new_builder(100)