cc3200/tools/smoke.py: Change readall() to read().

pull/1/head
Damien George 2016-11-14 23:31:08 +11:00
parent c3d96d387c
commit aed3b5b7ba
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ n_w = f.write(test_bytes)
print(n_w == len(test_bytes))
f.close()
f = open('test.txt', 'r')
r = bytes(f.readall(), 'ascii')
r = bytes(f.read(), 'ascii')
# check that we can write and read it correctly
print(r == test_bytes)
f.close()