Skip to content

Commit

Permalink
tests: remove 3.2, fix auto_index test assert
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Mar 10, 2016
1 parent 42aa12f commit 3f734e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
Expand Down
6 changes: 3 additions & 3 deletions tests/test_auto_colls.py
Expand Up @@ -506,11 +506,11 @@ def do_copy():
index_file = os.path.join(auto_dir, INDEX_DIR, AUTOINDEX_FILE)
assert os.path.isfile(index_file)

with open(index_file, 'rb') as fh:
with open(index_file, 'r') as fh:
index = fh.read()

assert b'"example.warc.gz' in index
assert b'"sub/example-extra.warc' in index, index
assert '"example.warc.gz' in index, index
assert '"sub/example-extra.warc' in index, index

mtime = os.path.getmtime(index_file)

Expand Down

0 comments on commit 3f734e1

Please sign in to comment.