File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ def __init__(self, filepath=None):
127
127
128
128
def _read_from_file (self ):
129
129
try :
130
- fmap = file_contents_ro_filepath (self ._path , stream = False , allow_mmap = True )
130
+ fmap = file_contents_ro_filepath (self ._path , stream = True , allow_mmap = True )
131
131
except OSError :
132
132
# it is possible and allowed that the file doesn't exist !
133
133
return
Original file line number Diff line number Diff line change @@ -34,9 +34,7 @@ def test_base(self):
34
34
tdir = tempfile .mktemp (suffix = "test_reflogs" )
35
35
os .mkdir (tdir )
36
36
37
- # verify we have a ref - with the creation of a new ref, the reflog
38
- # will be created as well
39
- rlp_master_ro = RefLog .path (self .rorepo .heads .master )
37
+ rlp_master_ro = RefLog .path (self .rorepo .head )
40
38
assert os .path .isfile (rlp_master_ro )
41
39
42
40
# simple read
You can’t perform that action at this time.
0 commit comments