File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 66
77from unittest .mock import patch
88
9- from nose .tools import (
10- assert_false # @UnusedImport
11- )
12-
13- __all__ = ['patch' , 'assert_false' ]
9+ __all__ = ['patch' ]
Original file line number Diff line number Diff line change 4040 patch ,
4141 TestBase ,
4242 with_rw_repo ,
43- fixture ,
44- assert_false
43+ fixture
4544)
4645from git .util import HIDE_WINDOWS_KNOWN_ERRORS , cygpath
4746from git .test .lib import with_rw_directory
@@ -342,7 +341,7 @@ def test_repr(self):
342341 def test_is_dirty_with_bare_repository (self ):
343342 orig_value = self .rorepo ._bare
344343 self .rorepo ._bare = True
345- assert_false (self .rorepo .is_dirty ())
344+ self . assertFalse (self .rorepo .is_dirty ())
346345 self .rorepo ._bare = orig_value
347346
348347 def test_is_dirty (self ):
You can’t perform that action at this time.
0 commit comments