summaryrefslogtreecommitdiff
path: root/tests/testutils/repo/bzr.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testutils/repo/bzr.py')
-rw-r--r--tests/testutils/repo/bzr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/repo/bzr.py b/tests/testutils/repo/bzr.py
index 8b2f17844..5b64ba042 100644
--- a/tests/testutils/repo/bzr.py
+++ b/tests/testutils/repo/bzr.py
@@ -11,7 +11,7 @@ class Bzr(Repo):
def __init__(self, directory, subdir):
if not HAVE_BZR:
pytest.skip("bzr is not available")
- super(Bzr, self).__init__(directory, subdir)
+ super().__init__(directory, subdir)
self.bzr = BZR
def create(self, directory):