summaryrefslogtreecommitdiff
path: root/git/test/test_repo.py
diff options
context:
space:
mode:
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):