From 4328a4ffb174ce5d64d2edbddcba793968d54c98 Mon Sep 17 00:00:00 2001 From: Lucian Smith Date: Thu, 27 Jul 2023 15:25:01 -0700 Subject: [PATCH] Remove no-longer-valid test. --- tests/test_core_main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/test_core_main.py b/tests/test_core_main.py index 6026ec5..34d6177 100644 --- a/tests/test_core_main.py +++ b/tests/test_core_main.py @@ -502,10 +502,6 @@ def test_exec_sed_task_with_preprocesssed_task(self): ] # execute simulation - task.model.changes[0].target = "/sbml:sbml/sbml:model" - with self.assertRaisesRegex(ValueError, 'targets for the following changes are not valid'): - preprocessed_task = core.preprocess_sed_task(task, variables) - task.model.changes[0].target = "/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='C']" task.simulation.algorithm.kisao_id = 'KISAO_0000029' preprocessed_task = core.preprocess_sed_task(task, variables)