diff options
author | xyb <xieyanbo@gmail.com> | 2014-01-15 19:58:11 +0800 |
---|---|---|
committer | xyb <xieyanbo@gmail.com> | 2014-01-15 19:58:11 +0800 |
commit | 3270fb4be66f2d61de31d2e6315dfdb8ebfb2132 (patch) | |
tree | 6711bfc5e7c5d830e3328721bf7d486efd06dfbd /tests/basics | |
parent | 82e61bdc24eb1d70a342c65e06de113e7375e361 (diff) | |
download | micropython-3270fb4be66f2d61de31d2e6315dfdb8ebfb2132.tar.gz micropython-3270fb4be66f2d61de31d2e6315dfdb8ebfb2132.zip |
int() test passed
Diffstat (limited to 'tests/basics')
-rw-r--r-- | tests/basics/tests/int1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/tests/int1.py b/tests/basics/tests/int1.py index d766216d44..6f3e3f272c 100644 --- a/tests/basics/tests/int1.py +++ b/tests/basics/tests/int1.py @@ -38,7 +38,7 @@ def test(value, base): test(' 1x', 0) -test(' 1\02 ', 0) +test(' 1' + chr(2) + ' ', 0) test('', 0) test(' ', 0) test(' \t\t ', 0) |