diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-16 17:17:19 -0600 |
---|---|---|
committer | Harmon <Harmon758@gmail.com> | 2020-02-16 17:17:19 -0600 |
commit | 8a5a78b27ce1bcda6597b340d47a20efbac478d7 (patch) | |
tree | f5a975822df29c2cd80e9ab6912da52f37aaf077 /git/test/lib/asserts.py | |
parent | 7fd8768c64d192b0b26a00d6c12188fcbc2e3224 (diff) | |
download | gitpython-8a5a78b27ce1bcda6597b340d47a20efbac478d7.tar.gz |
Replace assert_false with assertFalse
Diffstat (limited to 'git/test/lib/asserts.py')
-rw-r--r-- | git/test/lib/asserts.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/git/test/lib/asserts.py b/git/test/lib/asserts.py index 207bbd68..6c49a0c3 100644 --- a/git/test/lib/asserts.py +++ b/git/test/lib/asserts.py @@ -6,8 +6,4 @@ from unittest.mock import patch -from nose.tools import ( - assert_false # @UnusedImport -) - -__all__ = ['patch', 'assert_false'] +__all__ = ['patch'] |