diff options
Diffstat (limited to 'git/test/lib')
-rw-r--r-- | git/test/lib/__init__.py | 1 | ||||
-rw-r--r-- | git/test/lib/asserts.py | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/git/test/lib/__init__.py b/git/test/lib/__init__.py index 87e26752..1551ce45 100644 --- a/git/test/lib/__init__.py +++ b/git/test/lib/__init__.py @@ -6,7 +6,6 @@ # flake8: noqa import inspect -from .asserts import * from .helper import * __all__ = [name for name, obj in locals().items() diff --git a/git/test/lib/asserts.py b/git/test/lib/asserts.py deleted file mode 100644 index 6c49a0c3..00000000 --- a/git/test/lib/asserts.py +++ /dev/null @@ -1,9 +0,0 @@ -# asserts.py -# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors -# -# This module is part of GitPython and is released under -# the BSD License: http://www.opensource.org/licenses/bsd-license.php - -from unittest.mock import patch - -__all__ = ['patch'] |