From 52fee0412408c81c7dcf0983f6a33ded37a33190 Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Sat, 12 Oct 2024 15:39:14 +0300 Subject: [PATCH] Decreased the number of facts in large db test --- tests/test_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_examples.py b/tests/test_examples.py index 7e96fa1..d48acf3 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -293,7 +293,7 @@ def test_large_db(self): Generates a large database, then runs query """ - num_facts = 1250000 + num_facts = 125000 prolog = Prolog() for i in range(num_facts): prolog.assertz("p(%s)" % i)