Skip to content

Commit

Permalink
fix test for manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Jun 17, 2021
1 parent 2da0085 commit d4a9a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_sourmash.py
Original file line number Diff line number Diff line change
Expand Up @@ -2708,10 +2708,10 @@ def test_do_sourmash_check_sbt_filenames():
sig_md5s.add(sig.md5sum())

sbt_files = glob.glob(os.path.join(location, '.sbt.zzz', '*'))
assert len(sbt_files) == 13
assert len(sbt_files) == 14

for f in sbt_files:
if 'internal' in f:
if 'internal' in f or f.endswith('zzz.manifest.csv'):
continue
f = os.path.basename(f)
assert f not in sig_names
Expand Down

0 comments on commit d4a9a2e

Please sign in to comment.