Skip to content

Commit

Permalink
tests: don't fail on PPID upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jun 3, 2024
1 parent 5ce3da6 commit c3c2a8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_gui_manager.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import shutil

from dcnum.meta import ppid

from chipstream.gui import manager


Expand Down Expand Up @@ -80,7 +82,7 @@ def test_manager_run_defaults():
assert mg.current_index == 0
assert not mg.is_busy()
# default pipeline may change in dcnum
assert mg.get_runner(0).ppid == ("8|"
assert mg.get_runner(0).ppid == (f"{ppid.DCNUM_PPID_GENERATION}|"
"hdf:p=0.2645^i=0|"
"sparsemed:k=200^s=1^t=0^f=0.8^o=1|"
"thresh:t=-6:cle=1^f=1^clo=2|"
Expand Down

0 comments on commit c3c2a8f

Please sign in to comment.