Merge "relinker: trivial comment and test fixes"

This commit is contained in:
Zuul 2021-04-06 23:45:09 +00:00 committed by Gerrit Code Review
commit 4780f812bc
2 changed files with 1 additions and 2 deletions

View File

@ -269,7 +269,7 @@ class Relinker(object):
start = self.next_part_power - 1
stop = max(start - self.conf['link_check_limit'], -1)
for check_part_power in range(start, stop, -1):
# Try to create the link from each of 3 previous part power
# Try to create the link from each of several previous part power
# locations. If an attempt succeeds then either a link was made or
# an existing link with the same inode as the next part power
# location was found: either is acceptable. The part power location

View File

@ -1397,7 +1397,6 @@ class TestRelinker(unittest.TestCase):
self.assertIn('2 hash dirs processed (cleanup=False) '
'(2 files, 0 linked, 1 removed, 0 errors)',
info_lines)
print(info_lines)
with open(new_filepath, 'r') as fd:
self.assertEqual(old_filepath, fd.read())
self.assertFalse(os.path.exists(older_filepath))