Skip to content

Commit eb4b3e0

Browse files
authored
Change xrange to range (#601)
1 parent a04b3c5 commit eb4b3e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ def test_add_fail_for_over_limit(self):
11961196
from googleapiclient.http import MAX_BATCH_LIMIT
11971197

11981198
batch = BatchHttpRequest()
1199-
for i in xrange(0, MAX_BATCH_LIMIT):
1199+
for i in range(0, MAX_BATCH_LIMIT):
12001200
batch.add(HttpRequest(
12011201
None,
12021202
None,

0 commit comments

Comments
 (0)