Skip to content

Commit 7487924

Browse files
committed
add offset argument to seek in io test
1 parent 7b2727d commit 7487924

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ipykernel/tests/test_io.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def test_io_api():
3535
with nt.assert_raises(io.UnsupportedOperation):
3636
stream.readline()
3737
with nt.assert_raises(io.UnsupportedOperation):
38-
stream.seek()
38+
stream.seek(0)
3939
with nt.assert_raises(io.UnsupportedOperation):
4040
stream.tell()
41-

0 commit comments

Comments
 (0)