Skip to content

Commit 3fb1476

Browse files
remove commented bit in test
1 parent 5823583 commit 3fb1476

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyomo/contrib/solver/tests/solvers/test_solvers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ def test_mutable_quadratic_objective_qp(
11671167
self.assertAlmostEqual(m.x2.value, 1, places=4)
11681168
self.assertAlmostEqual(results.incumbent_objective, 2, 4)
11691169

1170-
# del m.x1
1170+
del m.x1
11711171
results = opt.solve(m)
11721172
self.assertAlmostEqual(m.x2.value, 1, places=4)
11731173
self.assertAlmostEqual(results.incumbent_objective, 2, 4)

0 commit comments

Comments
 (0)