mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-27 03:42:49 +00:00
Fix typo causing test to fail
This commit is contained in:
parent
5729e33412
commit
01299421ee
1 changed files with 2 additions and 2 deletions
|
|
@ -93,8 +93,8 @@ class TestFileTransmission(BaseTest):
|
|||
c_path = os.path.join(self.tdir, 'c')
|
||||
|
||||
def files_equal(a_path, c_path):
|
||||
self.ae(os.path.getsize(a_path), os.path.getsize(b_path))
|
||||
with open(b_path, 'rb') as b, open(c_path, 'rb') as c:
|
||||
self.ae(os.path.getsize(a_path), os.path.getsize(c_path))
|
||||
with open(c_path, 'rb') as b, open(c_path, 'rb') as c:
|
||||
self.ae(b.read(), c.read())
|
||||
|
||||
def patch(old_path, new_path, output_path, max_delta_len=0):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue