diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-01-23 19:00:02 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-01-23 19:00:02 +0200 |
commit | 66b060f3e6c7914a4bf4aeb6b86dd3b6a5d8b7a3 (patch) | |
tree | 1e47fb607009c19c290b862cd1d0017ff9f32d3e /tests | |
parent | 444331c07f47488325986e375ea6b1838f06685d (diff) | |
download | micropython-66b060f3e6c7914a4bf4aeb6b86dd3b6a5d8b7a3.tar.gz micropython-66b060f3e6c7914a4bf4aeb6b86dd3b6a5d8b7a3.zip |
tests: Fix typo in file_long_read3.py.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/io/file_long_read3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/io/file_long_read3.py b/tests/io/file_long_read3.py index f25f044385..d8b0cce550 100644 --- a/tests/io/file_long_read3.py +++ b/tests/io/file_long_read3.py @@ -1,4 +1,4 @@ -f = open("io/data/bigfile2", "rb") +f = open("io/data/bigfile1", "rb") b = f.read(512) print(len(b)) print(b) |