Skip to content

Commit b85fec1

Browse files
committed
fix flake
1 parent e0a7824 commit b85fec1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: test/test_clone.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212
with_rw_directory,
1313
)
1414

15+
1516
class TestClone(TestBase):
1617
@with_rw_directory
1718
def test_checkout_in_non_empty_dir(self, rw_dir):
1819
non_empty_dir = Path(rw_dir)
1920
garbage_file = non_empty_dir / 'not-empty'
2021
garbage_file.write_text('Garbage!')
2122

22-
# Verify that cloning into the non-empty dir fails while complaining about the target directory not being empty/non-existent
23+
# Verify that cloning into the non-empty dir fails while complaining about
24+
# the target directory not being empty/non-existent
2325
try:
2426
self.rorepo.clone(non_empty_dir)
2527
except git.GitCommandError as exc:

0 commit comments

Comments
 (0)