diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-04-23 11:59:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-23 11:59:03 +0100 |
commit | 286e20f2bcbce9c74c80448eb5443aea3d27b336 (patch) | |
tree | ccc6a7b2edbc3a9b5d4563b5e4281d0d817c0122 /tests/util/test_linearizer.py | |
parent | Merge pull request #3106 from NotAFile/py3-six-itervalues-1 (diff) | |
parent | Make tests py3 compatible (diff) | |
download | synapse-286e20f2bcbce9c74c80448eb5443aea3d27b336.tar.xz |
Merge pull request #3109 from NotAFile/py3-tests-fix
Make tests py3 compatible
Diffstat (limited to 'tests/util/test_linearizer.py')
-rw-r--r-- | tests/util/test_linearizer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/util/test_linearizer.py b/tests/util/test_linearizer.py index 793a88e462..4865eb4bc6 100644 --- a/tests/util/test_linearizer.py +++ b/tests/util/test_linearizer.py @@ -18,6 +18,7 @@ from tests import unittest from twisted.internet import defer from synapse.util.async import Linearizer +from six.moves import range class LinearizerTestCase(unittest.TestCase): @@ -58,7 +59,7 @@ class LinearizerTestCase(unittest.TestCase): logcontext.LoggingContext.current_context(), lc) func(0, sleep=True) - for i in xrange(1, 100): + for i in range(1, 100): func(i) return func(1000) |