1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-03 18:27:01 +00:00

fix typos

This commit is contained in:
anarcat 2015-11-23 12:41:20 -05:00
parent 0196d80b28
commit 2ac515a5f7

View file

@ -697,10 +697,10 @@ def test_progress_tty(self):
# with a terminal, progress forced on # with a terminal, progress forced on
output = self.cmd('create', '--progress', self.repository_location + '::test4', 'input', fork=True) output = self.cmd('create', '--progress', self.repository_location + '::test4', 'input', fork=True)
self.assert_in("\r", output) self.assert_in("\r", output)
# without a termainl, progress forced off # without a terminal, progress forced off
output = self.cmd('create', '--no-progress', self.repository_location + '::test5', 'input', fork=False) output = self.cmd('create', '--no-progress', self.repository_location + '::test5', 'input', fork=False)
self.assert_not_in("\r", output) self.assert_not_in("\r", output)
# with a termainl, progress forced off # with a terminal, progress forced off
output = self.cmd('create', '--no-progress', self.repository_location + '::test6', 'input', fork=True) output = self.cmd('create', '--no-progress', self.repository_location + '::test6', 'input', fork=True)
self.assert_not_in("\r", output) self.assert_not_in("\r", output)