Skip to content

Commit c28c249

Browse files
committed
Removed commented out assertion checks
1 parent 383883f commit c28c249

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pyomo/contrib/doe/tests/test_doe_errors.py

-14
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,6 @@ def test_reactor_check_bad_prior_negative_eigenvalue(self):
189189
):
190190
doe_obj.create_doe_model()
191191

192-
'''
193-
with self.assertRaisesRegex(
194-
ValueError,
195-
"FIM provided is not positive definite. It has one or more negative eigenvalue(s) less than -{*}",
196-
):
197-
doe_obj.create_doe_model()
198-
'''
199-
200192
def test_reactor_check_bad_prior_not_symmetric(self):
201193
from pyomo.contrib.doe.doe import _SMALL_TOLERANCE_SYMMETRY
202194

@@ -221,12 +213,6 @@ def test_reactor_check_bad_prior_not_symmetric(self):
221213
),
222214
):
223215
doe_obj.create_doe_model()
224-
'''
225-
with self.assertRaisesRegex(
226-
ValueError, "FIM provided is not symmetric using absolute tolerance {*}"
227-
):
228-
doe_obj.create_doe_model()'
229-
'''
230216

231217
def test_reactor_check_bad_jacobian_init_size(self):
232218
fd_method = "central"

0 commit comments

Comments
 (0)