summaryrefslogtreecommitdiff
path: root/fastimport/tests/test_helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'fastimport/tests/test_helpers.py')
-rw-r--r--fastimport/tests/test_helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fastimport/tests/test_helpers.py b/fastimport/tests/test_helpers.py
index 3198cea..f695a60 100644
--- a/fastimport/tests/test_helpers.py
+++ b/fastimport/tests/test_helpers.py
@@ -51,5 +51,6 @@ class TestCommonDirectory(unittest.TestCase):
self.assertEqual(c, b'foo/bar/')
def test_lots_of_paths(self):
- c = helpers.common_directory([b'foo/bar/x', b'foo/bar/y', b'foo/bar/z'])
+ c = helpers.common_directory(
+ [b'foo/bar/x', b'foo/bar/y', b'foo/bar/z'])
self.assertEqual(c, b'foo/bar/')