tests: reduce maxn in builder_test.js.v to just 1000 for now (runs in under 200ms, vs ~240s before that)
parent
9fabf9f20c
commit
3c8be0db72
|
@ -2,7 +2,7 @@ import strings
|
||||||
|
|
||||||
type MyInt = int
|
type MyInt = int
|
||||||
|
|
||||||
const maxn = 100000
|
const maxn = 1000
|
||||||
|
|
||||||
fn test_sb() {
|
fn test_sb() {
|
||||||
mut sb := strings.new_builder(100)
|
mut sb := strings.new_builder(100)
|
||||||
|
|
Loading…
Reference in New Issue