From b3a52f4cbb2cbfe0a8bd5bc8b8a4aa27af215a54 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sun, 9 Jul 2017 21:49:26 -0700 Subject: [PATCH] Fix typo in test. --- lib/matplotlib/tests/test_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py index acc8b64e1858..94ba3119fa7f 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -919,7 +919,7 @@ def test_symlog(): ax = fig.add_subplot(111) ax.plot(x, y) ax.set_yscale('symlog') - ax.set_xscale = ('linear') + ax.set_xscale('linear') ax.set_ylim(-1, 10000000)