diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-07 06:28:54 -0600 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-02-08 10:55:50 +0800 |
commit | 00ef69351e5e7bbbad7fd661361b3569b6408d49 (patch) | |
tree | 6514b66763f344bab99a6ec093220e32011ef971 /git/test | |
parent | eba84183ea79061eebb05eab46f6503c1cf8836f (diff) | |
download | gitpython-00ef69351e5e7bbbad7fd661361b3569b6408d49.tar.gz |
Remove no longer used imports in tests
Diffstat (limited to 'git/test')
-rw-r--r-- | git/test/test_fun.py | 2 | ||||
-rw-r--r-- | git/test/test_repo.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/git/test/test_fun.py b/git/test/test_fun.py index 65db06ee..612c4c5d 100644 --- a/git/test/test_fun.py +++ b/git/test/test_fun.py @@ -2,7 +2,7 @@ from io import BytesIO from stat import S_IFDIR, S_IFREG, S_IFLNK from os import stat import os.path as osp -from unittest import skipIf, SkipTest +from unittest import SkipTest from git import Git from git.index import IndexFile diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 79436b67..0af68730 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -54,7 +54,6 @@ from git.util import HIDE_WINDOWS_KNOWN_ERRORS, cygpath from git.test.lib import with_rw_directory from git.util import join_path_native, rmtree, rmfile, bin_to_hex -import functools as fnt import os.path as osp |