summaryrefslogtreecommitdiff
path: root/test/test_base.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:01:38 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:01:38 +0800
commite530544546b2a4e5f00e8d9458bf1b895573ec41 (patch)
tree9b957bd812fe98664d3f1f75615dda8242663097 /test/test_base.py
parentf78fc42b90711c81e06699d1ebdbe69e6648b949 (diff)
downloadgitpython-e530544546b2a4e5f00e8d9458bf1b895573ec41.tar.gz
reformat according to 'black' configuration file.
Diffstat (limited to 'test/test_base.py')
-rw-r--r--test/test_base.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_base.py b/test/test_base.py
index a7c034e2..ccfdc8ed 100644
--- a/test/test_base.py
+++ b/test/test_base.py
@@ -92,9 +92,7 @@ class TestBase(_TestBase):
def test_object_resolution(self):
# objects must be resolved to shas so they compare equal
- self.assertEqual(
- self.rorepo.head.reference.object, self.rorepo.active_branch.object
- )
+ self.assertEqual(self.rorepo.head.reference.object, self.rorepo.active_branch.object)
@with_rw_repo("HEAD", bare=True)
def test_with_bare_rw_repo(self, bare_rw_repo):