From 2ac515a5f7696a7e4dc6f2691766c4b7e1b1ea1c Mon Sep 17 00:00:00 2001 From: anarcat Date: Mon, 23 Nov 2015 12:41:20 -0500 Subject: [PATCH] fix typos --- borg/testsuite/archiver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/borg/testsuite/archiver.py b/borg/testsuite/archiver.py index 928b12be3..2d31a8309 100644 --- a/borg/testsuite/archiver.py +++ b/borg/testsuite/archiver.py @@ -697,10 +697,10 @@ def test_progress_tty(self): # with a terminal, progress forced on output = self.cmd('create', '--progress', self.repository_location + '::test4', 'input', fork=True) 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) 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) self.assert_not_in("\r", output)