summary refs log tree commit diff stats
path: root/tests/float
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-05-25 01:10:31 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-05-25 01:10:31 +0200
commit835bd9aef23b98e101c3e251cd9f3045f016d766 (patch)
tree2e6e0c1d6df6ec9833729c8dde96d58c36091742 /tests/float
parentbcc91a319c7b638c3db2da6afe6bd2b06ebf7e0e (diff)
downloadNim-835bd9aef23b98e101c3e251cd9f3045f016d766.tar.gz
fixes #4212
Diffstat (limited to 'tests/float')
-rw-r--r--tests/float/tfloat4.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/tfloat4.nim b/tests/float/tfloat4.nim
index 960c4e5f7..9bc8cffff 100644
--- a/tests/float/tfloat4.nim
+++ b/tests/float/tfloat4.nim
@@ -13,7 +13,7 @@ proc floatToStr(f: float64): string =
 
 let testFloats = [
   "0", "-1", "1", "1.", ".3", "3.3", "-.3", "-99.99",
-  "1.1e10", "-2e100", "1.234e-10", "1.234e+10",
+  "1.1e10", "-2e100", "1.234e-10", "1.234e+10", "-0.0",
   "-inf", "inf", "+inf",
   "3.14159265358979323846264338327950288",
   "1.57079632679489661923132169163975144",