Skip to content

Commit

Permalink
fixing xrange for python3 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Tushman committed Dec 15, 2014
1 parent 1ae5a12 commit 60c27d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def test_suspend_worker_execution(self):

def test_suspend_with_duration(self):
q = Queue()
for _ in xrange(5):
for _ in range(5):
q.enqueue(do_nothing)

w = Worker([q])
Expand Down

0 comments on commit 60c27d5

Please sign in to comment.