File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
from grading_lib .repository import Repository , RepositoryBaseTestCase
6
6
7
7
8
- def test_Repository_init_with_an_empty_folder (tmp_path : pytest . Fixture ) -> None :
8
+ def test_Repository_init_with_an_empty_folder (tmp_path ) -> None :
9
9
repo = Repository (tmp_path )
10
10
assert isinstance (repo .working_tree_dir , Path )
11
11
12
12
13
- def test_Repository_create_and_add_random_file (tmp_path : pytest . Fixture ) -> None :
13
+ def test_Repository_create_and_add_random_file (tmp_path ) -> None :
14
14
repo = Repository (tmp_path )
15
15
assert isinstance (repo .working_tree_dir , Path )
16
16
@@ -22,7 +22,7 @@ def test_Repository_create_and_add_random_file(tmp_path: pytest.Fixture) -> None
22
22
assert len (repo .repo .index .entries ) == 2
23
23
24
24
25
- def test_RepositoryBaseTestCase_assertHasOnlyGitCommand (tmp_path : pytest . Fixture ) -> None :
25
+ def test_RepositoryBaseTestCase_assertHasOnlyGitCommand (tmp_path ) -> None :
26
26
class Child (RepositoryBaseTestCase ):
27
27
pass
28
28
You can’t perform that action at this time.
0 commit comments