fixing xrange for python3 compatability

main
Jonathan Tushman 10 years ago
parent 1ae5a12a81
commit 60c27d5a27

@ -353,7 +353,7 @@ class TestWorker(RQTestCase):
def test_suspend_with_duration(self):
q = Queue()
for _ in xrange(5):
for _ in range(5):
q.enqueue(do_nothing)
w = Worker([q])

Loading…
Cancel
Save