diff --git a/tests/file.py b/tests/file.py index bacf26a7..a07de9df 100644 --- a/tests/file.py +++ b/tests/file.py @@ -2,7 +2,7 @@ from classes.file import File from os.path import exists f = File('text.txt') -assert f.write_bytes(b'testing bytes i/o') +assert f.write_bytes(b'testing bytes i/o'), 17 assert f.read_bytes(), b'testing bytes i/o' f.open() # does it open any text editor on your system? f.remove()