diff options
| author | bnewbold <bnewbold@archive.org> | 2020-05-22 16:18:53 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-22 16:18:53 -0700 | 
| commit | cfc5d104e94a2f5d51878e33930e3ba83f0701c8 (patch) | |
| tree | 344584225c2e5cb5aa9bf2d2881f0e3e7ed6c818 /python/tests/harvest_state.py | |
| parent | e749b576bdb9bbec3bcef7e4e389e7fbbf916c84 (diff) | |
| parent | 2e1b5b85c3b8f61ab5b0ebc55a880f0b742ca413 (diff) | |
| download | fatcat-cfc5d104e94a2f5d51878e33930e3ba83f0701c8.tar.gz fatcat-cfc5d104e94a2f5d51878e33930e3ba83f0701c8.zip | |
Merge pull request #55 from cclauss/patch-1
Travis CI: Lint Python code for syntax errors and undefined names
Diffstat (limited to 'python/tests/harvest_state.py')
| -rw-r--r-- | python/tests/harvest_state.py | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/python/tests/harvest_state.py b/python/tests/harvest_state.py index 85cd2c99..da9bef84 100644 --- a/python/tests/harvest_state.py +++ b/python/tests/harvest_state.py @@ -11,7 +11,7 @@ def test_harvest_state():      hs = HarvestState(catchup_days=5)      assert max(hs.to_process) < today -    assert len(hs.to_process) is 5 +    assert len(hs.to_process) == 5      for d in list(hs.to_process):          hs.complete(d) @@ -22,12 +22,12 @@ def test_harvest_state():          start_date=datetime.date(2000,1,1),          end_date=datetime.date(2000,1,3),      ) -    assert len(hs.to_process) is 3 +    assert len(hs.to_process) == 3      hs = HarvestState(          start_date=datetime.date(2000,1,29),          end_date=datetime.date(2000,2,2),      ) -    assert len(hs.to_process) is 5 +    assert len(hs.to_process) == 5      hs = HarvestState(catchup_days=0)      assert hs.next() is None @@ -35,6 +35,6 @@ def test_harvest_state():          start_date=datetime.date(2000,1,1),          end_date=datetime.date(2000,1,3),      ) -    assert len(hs.to_process) is 3 +    assert len(hs.to_process) == 3      hs.update('{"completed-date": "2000-01-02"}') -    assert len(hs.to_process) is 2 +    assert len(hs.to_process) == 2 | 
