|
@@ -63,9 +63,9 @@ def test_submit_scenario_development_mode():
|
|
|
|
|
|
# data nodes should have been written (except the input dn_0)
|
|
|
assert scenario.dn_0.last_edit_date < submit_time
|
|
|
- assert scenario.dn_1.last_edit_date == submit_time
|
|
|
- assert scenario.dn_2.last_edit_date == submit_time
|
|
|
- assert scenario.dn_3.last_edit_date == submit_time
|
|
|
+ assert scenario.dn_1.last_edit_date is not None
|
|
|
+ assert scenario.dn_2.last_edit_date is not None
|
|
|
+ assert scenario.dn_3.last_edit_date is not None
|
|
|
|
|
|
# jobs are created in a specific order and are correct
|
|
|
assert len(jobs) == 4
|
|
@@ -340,7 +340,9 @@ def test_submit_sequence_development_mode():
|
|
|
|
|
|
# data nodes should have been written (except the input dn_0)
|
|
|
assert sce.dn_0.last_edit_date < submit_time
|
|
|
- assert sce.dn_1.last_edit_date == submit_time == sce.dn_2.last_edit_date == sce.dn_3.last_edit_date
|
|
|
+ assert sce.dn_1.last_edit_date is not None
|
|
|
+ assert sce.dn_2.last_edit_date is not None
|
|
|
+ assert sce.dn_3.last_edit_date is not None
|
|
|
|
|
|
# jobs are created in a specific order and are correct
|
|
|
assert len(jobs) == 3
|