Skip to content

Commit 0d7bd7c

Browse files
committed
flake8 fix
1 parent da46769 commit 0d7bd7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/tests/test_contour.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,8 +716,9 @@ def test_bool_autolevel():
716716
assert plt.tricontourf(x, y, z.tolist()).levels.tolist() == [0, .5, 1]
717717
assert plt.tricontourf(x, y, z).levels.tolist() == [0, .5, 1]
718718

719+
719720
def test_all_nan():
720721
x = np.array([[np.nan, np.nan], [np.nan, np.nan]])
721722
assert_array_almost_equal(plt.contour(x).levels.tolist(),
722723
[-1e-13, -7.5e-14, -5e-14, -2.4e-14, 0.0,
723-
2.4e-14, 5e-14, 7.5e-14, 1e-13])
724+
2.4e-14, 5e-14, 7.5e-14, 1e-13])

0 commit comments

Comments
 (0)