aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xtest/stress_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/stress_test.py b/test/stress_test.py
index 883c874..d210db6 100755
--- a/test/stress_test.py
+++ b/test/stress_test.py
@@ -70,8 +70,8 @@ class ExprGen:
_OPERATORS = '+', '-', '*', '/'
_MIN_NUMOF_OPERATORS = 10
_MAX_NUMOF_OPERATORS = 1000
- _MIN_NUMBER = -10e10
- _MAX_NUMBER = 10e10
+ _MIN_NUMBER = int(-10e10)
+ _MAX_NUMBER = int(10e10)
@staticmethod
def _random_operator():