summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.py b/test.py
index 2cccf25..7a4842f 100644
--- a/test.py
+++ b/test.py
@@ -213,13 +213,13 @@ def wraptest3():
assert p == q
-@lrudecorator(25)
+@lrudecorator(100)
def square(x):
return x*x
def testDecorator():
for i in range(1000):
- x = random.randint(0, 1493)
+ x = random.randint(0, 200)
assert square(x) == x*x