From 9c149d52fcc4ed94f5de81801c1ecf8fc56adb60 Mon Sep 17 00:00:00 2001
From: Scott Worley <scottworley@scottworley.com>
Date: Fri, 24 May 2019 08:00:21 -0700
Subject: [PATCH] Test with larger tables

---
 tax.test.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tax.test.js b/tax.test.js
index 21b98b6..29f436f 100644
--- a/tax.test.js
+++ b/tax.test.js
@@ -16,7 +16,7 @@ function rand(limit = 99) {
 
 function make_random_tax_table() {
   function make_random_table(min_threshold) {
-    if (rand(2)) return [];
+    if (rand(4) == 0) return [];
     const start = min_threshold === undefined ? rand() : min_threshold;
     const end = start + 1 + rand();
     return [[start, rand()]].concat(make_random_table(end));
-- 
2.47.2