diff --git a/quantecon/optimize/tests/test_scalar_max.py b/quantecon/optimize/tests/test_scalar_max.py index f4704f92f..b91103d1c 100644 --- a/quantecon/optimize/tests/test_scalar_max.py +++ b/quantecon/optimize/tests/test_scalar_max.py @@ -18,7 +18,7 @@ def f(x): return -(x + 2.0)**2 + 1.0 -def test_brent_max(): +def test_f(): """ Uses the function f defined above to test the scalar maximization routine. @@ -38,9 +38,9 @@ def g(x, y): return -x**2 + y -def test_brent_max(): +def test_g(): """ - Uses the function f defined above to test the scalar maximization + Uses the function g defined above to test the scalar maximization routine. """ y = 5