Skip to content

Commit

Permalink
Fix version of files in unrelated vv test broken by repro
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Nov 9, 2020
1 parent b8cacbc commit 3b1d600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mica/vv/tests/test_vv.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

@pytest.mark.skipif('not HAS_VV_ARCHIVE', reason='Test requires vv archive')
def test_get_vv_dir():
obsdir = vv.get_vv_dir(16504)
obsdir = vv.get_vv_dir(16504, version=1)
assert obsdir == os.path.abspath(os.path.join(common.MICA_ARCHIVE, 'vv/16/16504_v01'))

@pytest.mark.skipif('not HAS_VV_ARCHIVE', reason='Test requires vv archive')
def test_get_vv_files():
obsfiles = vv.get_vv_files(16504)
obsfiles = vv.get_vv_files(16504, version=1)
assert sorted(obsfiles)[-1] == os.path.abspath(os.path.join(common.MICA_ARCHIVE,
'vv/16/16504_v01/vv_report.pkl'))

Expand Down

0 comments on commit 3b1d600

Please sign in to comment.