Skip to content

Commit

Permalink
Fix broken test in test_scripts.py
Browse files Browse the repository at this point in the history
Forgot to update the expected stderr after a rebase changed it.
	modified:   tests/test_scripts.py
  • Loading branch information
kdm9 committed Nov 20, 2014
1 parent 5d47b86 commit a1e9131
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_load_into_counting_tsv():
args.extend([outfile, infile])

(status, out, err) = utils.runscript(script, args)
assert 'Total number of k-mers: 95' in err, err
assert 'Total number of unique k-mers: 95' in err, err
assert os.path.exists(outfile)
assert os.path.exists(tabfile)
with open(tabfile) as tabfh:
Expand All @@ -100,7 +100,7 @@ def test_load_into_counting_json():
args.extend([outfile, infile])

(status, out, err) = utils.runscript(script, args)
assert 'Total number of k-mers: 95' in err, err
assert 'Total number of unique k-mers: 95' in err, err
assert os.path.exists(outfile)
assert os.path.exists(jsonfile)

Expand Down

0 comments on commit a1e9131

Please sign in to comment.