Small logic correction in run-time test.

This commit is contained in:
rocky
2019-12-09 04:09:44 -05:00
parent d11a9ea126
commit 8c879c02de
4 changed files with 0 additions and 1 deletions

View File

@@ -15,7 +15,6 @@ if PYTHON_VERSION > 2.4:
assert str(float("inf") * 0.0) == "nan"
else:
assert str(float("inf") * 0.0) == "-nan"
assert str(float("-inf") * 0.0) == "nan"
assert -1e300 * 1e300 == float("-inf")
# Complex (adapted from 02_complex.py)