summaryrefslogtreecommitdiff
path: root/git/test/lib/asserts.py
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-16 17:10:09 -0600
committerHarmon <Harmon758@gmail.com>2020-02-16 17:17:05 -0600
commit7fd8768c64d192b0b26a00d6c12188fcbc2e3224 (patch)
treee5d8c1ae0bc6e6819bcd3da2e1ca48b8d7d3288a /git/test/lib/asserts.py
parenteca69510d250f4e69c43a230610b0ed2bd23a2e7 (diff)
downloadgitpython-7fd8768c64d192b0b26a00d6c12188fcbc2e3224.tar.gz
Replace assert_true with assertTrue
Also change TestOutputStream to subclass TestBase rather than object
Diffstat (limited to 'git/test/lib/asserts.py')
-rw-r--r--git/test/lib/asserts.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/git/test/lib/asserts.py b/git/test/lib/asserts.py
index 0e7592c0..207bbd68 100644
--- a/git/test/lib/asserts.py
+++ b/git/test/lib/asserts.py
@@ -7,8 +7,7 @@
from unittest.mock import patch
from nose.tools import (
- assert_true, # @UnusedImport
assert_false # @UnusedImport
)
-__all__ = ['patch', 'assert_true', 'assert_false']
+__all__ = ['patch', 'assert_false']