Skip to content

Commit 93c54cf

Browse files
committed
Fix test case 0002 (PEtab-dev/PEtab#624)
1 parent 716750d commit 93c54cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

petabtests/cases/v2.0.0/sbml/0002/0002.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# problem --------------------------------------------------------------------
2424

2525
problem = Problem()
26-
problem.add_condition("c0", a0=0.8)
27-
problem.add_condition("c1", a0=0.9)
26+
problem.add_condition("c0", A=0.8)
27+
problem.add_condition("c1", B=0.9)
2828

2929
problem.add_experiment("e1", 0, "c0")
3030
problem.add_experiment("e2", 0, "c1")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
conditionId targetId targetValue
2-
c0 a0 0.8
3-
c1 a0 0.9
2+
c0 A 0.8
3+
c1 B 0.9

0 commit comments

Comments
 (0)