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

pull/2632/head
Damien George 2016-11-14 23:31:08 +11:00
rodzic c3d96d387c
commit aed3b5b7ba
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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()