]> gitweb.factorcode.org Git - factor.git/commitdiff
peg: fewer futures is fine
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 28 Aug 2023 23:50:39 +0000 (16:50 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 28 Aug 2023 23:50:39 +0000 (16:50 -0700)
basis/peg/peg-tests.factor

index 410bc315ec1e6b6ba5347dcfc2a528e45d6e900d..b89a294ded1024c43f84f3e4efdf55525b9e5061 100644 (file)
@@ -220,6 +220,6 @@ IN: peg.tests
 PEG: foo ( x -- x ) "abc" token ;
 
 { t } [
-    10,000 [ [ "abc" foo ] future ] replicate
+    2,000 [ [ "abc" foo ] future ] replicate
     [ ?future "abc" = ] all?
 ] unit-test