Skip to content

Commit 5077e32

Browse files
authored
NFC: Fix typo in test_solvers.py
1 parent cce2e7b commit 5077e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1422,7 +1422,7 @@ def test_fixed_vars_4(
14221422
self.assertAlmostEqual(m.x.value, 2)
14231423
m.y.unfix()
14241424
res = opt.solve(m)
1425-
# The globaal minimum is +/-(2**.5, 2**.5) without bounds.
1425+
# The global minimum is +/-(2**.5, 2**.5) without bounds.
14261426
# Bounds force it to the positive side
14271427
self.assertAlmostEqual(m.x.value, 2**0.5, delta=1e-3)
14281428
self.assertAlmostEqual(m.y.value, 2**0.5, delta=1e-3)

0 commit comments

Comments
 (0)