Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jun 2, 2020
1 parent ac432f9 commit 25669c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_zip_spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_parse_json_lines(sample, len_items):
assert item['url'] == 'http://example.com'
assert item['data_type'] == 'zip'
assert item['encoding'] == 'utf-8'
assert item['post_to_api'] == False
assert item['post_to_api'] is False

assert len(items) == len_items

Expand Down Expand Up @@ -101,7 +101,7 @@ def test_parse_release_package(sample, len_items, len_releases):
assert item['url'] == 'http://example.com'
assert item['data_type'] == 'zip'
assert item['encoding'] == 'utf-8'
assert item['post_to_api'] == False
assert item['post_to_api'] is False

assert len(items) == len_items

Expand Down

0 comments on commit 25669c0

Please sign in to comment.