summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test_clone.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_clone.py b/test/test_clone.py
index e4eb9fe1..e9f6714d 100644
--- a/test/test_clone.py
+++ b/test/test_clone.py
@@ -12,6 +12,7 @@ from .lib import (
with_rw_directory,
)
+
class TestClone(TestBase):
@with_rw_directory
def test_checkout_in_non_empty_dir(self, rw_dir):
@@ -19,7 +20,8 @@ class TestClone(TestBase):
garbage_file = non_empty_dir / 'not-empty'
garbage_file.write_text('Garbage!')
- # Verify that cloning into the non-empty dir fails while complaining about the target directory not being empty/non-existent
+ # Verify that cloning into the non-empty dir fails while complaining about
+ # the target directory not being empty/non-existent
try:
self.rorepo.clone(non_empty_dir)
except git.GitCommandError as exc: