Espruino/tests/test_float_to_string_conversion.js
Michael Duerinckx 7f5308590b Rename numbered tests to something more descriptive - closes #16
test077 is the only one I really couldn't figure out what it was meant
to test.
2014-03-01 22:15:28 +00:00

6 lines
81 B
JavaScript

// dumbass float to string bug
s = 0.999+"";
result = s == "0.999"
// NOT 0.A !