Skip to content

Commit

Permalink
Fixed checkcal_reprocess tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nkphysics committed Jan 3, 2023
1 parent 24f3f14 commit 419eb53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_autonicer.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import subprocess as sp
import tarfile
import glob
from termcolor import colored

base_dir = os.getcwd()
os.mkdir("data")
Expand Down Expand Up @@ -278,7 +279,7 @@ def test_checkcal_reprocess(capsys):
out, err = capsys.readouterr()
passing = f"---------- Passing Reprocess of 3013010102 ----------"
fail = "DATASETS NOT FOUND"
unix = "Migrating to 3013010102"
unix = f"Migrating to {colored('3013010102', 'cyan')}"
unix2 = "test.csv is not a directory! Passing..."
assert passing in out
assert fail in out
Expand Down

0 comments on commit 419eb53

Please sign in to comment.