tests: reduce maxn in builder_test.js.v to just 1000 for now (runs in under 200ms, vs ~240s before that)

pull/12153/head
Delyan Angelov 2021-10-11 19:57:35 +03:00
parent 9fabf9f20c
commit 3c8be0db72
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import strings
type MyInt = int
const maxn = 100000
const maxn = 1000
fn test_sb() {
mut sb := strings.new_builder(100)