Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bbcd625

Browse files
committed
FIX a small error made in a previous commit on the utils module tests
1 parent 0970fee commit bbcd625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
def test_is_string_like():
13-
y = np.arange(0)
13+
y = np.arange(10)
1414
assert_equal(utils.is_string_like(y), False)
1515
y.shape = 10, 1
1616
assert_equal(utils.is_string_like(y), False)

0 commit comments

Comments
 (0)