diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/stress_test.py | 4 |
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(): |