From: Alexis Laferrière Date: Tue, 12 Jan 2016 17:17:28 +0000 (-0500) Subject: tests: update test_string_is_numeric X-Git-Tag: v0.8~16^2 X-Git-Url: http://nitlanguage.org tests: update test_string_is_numeric Signed-off-by: Alexis Laferrière --- diff --git a/tests/sav/test_string_is_numeric.res b/tests/sav/test_string_is_numeric.res index e53b6ea..ba0fbec 100644 --- a/tests/sav/test_string_is_numeric.res +++ b/tests/sav/test_string_is_numeric.res @@ -1,7 +1,7 @@ false true true -true +false false false false diff --git a/tests/test_string_is_numeric.nit b/tests/test_string_is_numeric.nit index fcf7ea2..df648ee 100644 --- a/tests/test_string_is_numeric.nit +++ b/tests/test_string_is_numeric.nit @@ -25,7 +25,7 @@ print "45".is_numeric #True print "45.3".is_numeric -#True +#False print "45,3".is_numeric #False