summaryrefslogtreecommitdiff
path: root/git/test/test_repo.py
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-16 17:17:19 -0600
committerHarmon <Harmon758@gmail.com>2020-02-16 17:17:19 -0600
commit8a5a78b27ce1bcda6597b340d47a20efbac478d7 (patch)
treef5a975822df29c2cd80e9ab6912da52f37aaf077 /git/test/test_repo.py
parent7fd8768c64d192b0b26a00d6c12188fcbc2e3224 (diff)
downloadgitpython-8a5a78b27ce1bcda6597b340d47a20efbac478d7.tar.gz
Replace assert_false with assertFalse
Diffstat (limited to 'git/test/test_repo.py')
-rw-r--r--git/test/test_repo.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py
index fc836256..45a51fa6 100644
--- a/git/test/test_repo.py
+++ b/git/test/test_repo.py
@@ -40,8 +40,7 @@ from git.test.lib import (
patch,
TestBase,
with_rw_repo,
- fixture,
- assert_false
+ fixture
)
from git.util import HIDE_WINDOWS_KNOWN_ERRORS, cygpath
from git.test.lib import with_rw_directory
@@ -342,7 +341,7 @@ class TestRepo(TestBase):
def test_is_dirty_with_bare_repository(self):
orig_value = self.rorepo._bare
self.rorepo._bare = True
- assert_false(self.rorepo.is_dirty())
+ self.assertFalse(self.rorepo.is_dirty())
self.rorepo._bare = orig_value
def test_is_dirty(self):