Skip to content

Commit

Permalink
TEST: change SEEK_END error type
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldmccarthy committed Jun 25, 2020
1 parent 5adb1a7 commit d685fc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexed_gzip/tests/ctest_indexed_gzip.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def test_seek(concat):
results.append((f.read(8), 5))

# SEEK_END only works when index is built
with pytest.raises(igzip.NotCoveredError):
with pytest.raises(ValueError):
f.seek(-100, SEEK_END)

f.build_full_index()
Expand Down

0 comments on commit d685fc3

Please sign in to comment.