8000 Made small, pre-pull changes. · matplotlib/matplotlib@3ccff6f · GitHub
[go: up one dir, main page]

Skip to content

Commit 3ccff6f

Browse files
Phil Elsonpelson
Phil Elson
authored andcommitted
Made small, pre-pull changes.
1 parent 2286565 commit 3ccff6f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/matplotlib/tests/test_transforms.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from __future__ import print_function
2-
import itertools
32
import unittest
43

54
from nose.tools import assert_equal
@@ -228,7 +227,7 @@ def test_left_to_right_iteration(self):
228227
r = [rh for lh, rh in stack3._iter_break_from_left_to_right()]
229228
self.assertEqual(len(r), len(target_transforms))
230229

231-
for target_stack, stack in itertools.izip(target_transforms, r):
230+
for target_stack, stack in zip(target_transforms, r):
232231
self.assertEqual(target_stack, stack)
233232

234233
def test_transform_shortcuts(self):

0 commit comments

Comments
 (0)
0