diff tests/test-remotefilelog-histpack.py @ 49284:d44e3c45f0e4

py3: replace `pycompat.xrange` by `range`
author Manuel Jacob <me@manueljacob.de>
date Sun, 29 May 2022 15:17:27 +0200
parents 6000f5b25c9b
children 493034cc3265
line wrap: on
line diff
--- a/tests/test-remotefilelog-histpack.py	Sun May 29 12:38:54 2022 +0200
+++ b/tests/test-remotefilelog-histpack.py	Sun May 29 15:17:27 2022 +0200
@@ -283,7 +283,7 @@
         This causes it to use a 2^16 fanout table instead."""
         total = basepack.SMALLFANOUTCUTOFF + 1
         revisions = []
-        for i in pycompat.xrange(total):
+        for i in range(total):
             filename = b"foo-%d" % i
             node = self.getFakeHash()
             p1 = self.getFakeHash()