File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,4 +63,4 @@ def get_commit_hash_by_ref_name(name: str) -> str:
6363 if is_tag_exist (name ):
6464 commit_hash = get_tag_commit_hash (name )
6565 return commit_hash
66- return None
66+ return None
Original file line number Diff line number Diff line change 1- from cvs .modify import add
21from cvs .commit import *
2+ from cvs .modify import add
33
44
55def test_commit_file_is_created_after_committing (create_two_files ):
@@ -9,7 +9,7 @@ def test_commit_file_is_created_after_committing(create_two_files):
99
1010
1111def test_commit_file_content_matches_regex (create_two_files ,
12- create_dir_with_two_files ):
12+ create_dir_with_two_files ):
1313 add ('.' )
1414 commit_hash = commit ('' )
1515 commit_file_content = (commits_path / commit_hash ).read_text ()
Original file line number Diff line number Diff line change 11from unittest .mock import patch
22
3- from build . lib . cvs .commit import commit
3+ from cvs .commit import commit
44from cvs .diff import *
55from cvs .modify import add
66from cvs .config import repository_path
You can’t perform that action at this time.
0 commit comments