mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
Merge pull request #7123 from RayyanAnsari/hashindex-test-win
Fix test_size_on_disk_accurate on Windows
This commit is contained in:
commit
edf12186fc
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ def test_size_on_disk_accurate(self):
|
|||
for i in range(1234):
|
||||
idx[H(i)] = i, i**2
|
||||
with tempfile.NamedTemporaryFile() as file:
|
||||
idx.write(file.name)
|
||||
idx.write(file)
|
||||
size = os.path.getsize(file.name)
|
||||
assert idx.size() == size
|
||||
|
||||
|
|
Loading…
Reference in a new issue