summaryrefslogtreecommitdiffstatshomepage
path: root/tests/io/file_long_read3.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-01-23 19:00:02 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-01-23 19:00:02 +0200
commit66b060f3e6c7914a4bf4aeb6b86dd3b6a5d8b7a3 (patch)
tree1e47fb607009c19c290b862cd1d0017ff9f32d3e /tests/io/file_long_read3.py
parent444331c07f47488325986e375ea6b1838f06685d (diff)
downloadmicropython-66b060f3e6c7914a4bf4aeb6b86dd3b6a5d8b7a3.tar.gz
micropython-66b060f3e6c7914a4bf4aeb6b86dd3b6a5d8b7a3.zip
tests: Fix typo in file_long_read3.py.
Diffstat (limited to 'tests/io/file_long_read3.py')
-rw-r--r--tests/io/file_long_read3.py2
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)