summaryrefslogtreecommitdiff
path: root/test/unittest_shellutils.py
diff options
context:
space:
mode:
authorAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-07-27 10:20:26 +0200
committerAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-07-27 10:20:26 +0200
commitfd15c8efa8b1344aa05ef4531e65df698b1b8679 (patch)
treebc164ed6566acf42e52e188f2542f2525a275db8 /test/unittest_shellutils.py
parent3e5c562599e14ba1d8af5a69ddb69f1a590ba374 (diff)
downloadlogilab-common-fd15c8efa8b1344aa05ef4531e65df698b1b8679.tar.gz
[cleanup] delete-trailing-whitespaces
Diffstat (limited to 'test/unittest_shellutils.py')
-rw-r--r--test/unittest_shellutils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unittest_shellutils.py b/test/unittest_shellutils.py
index 17bc0e0..e0ba67f 100644
--- a/test/unittest_shellutils.py
+++ b/test/unittest_shellutils.py
@@ -24,7 +24,7 @@ class FindTC(TestCase):
set([join(DATA_DIR, f) for f in ['__init__.py', 'module.py',
'module2.py', 'noendingnewline.py',
'nonregr.py']]))
-
+
def test_exclude(self):
files = set(find(DATA_DIR, ('.py', '.pyc'), exclude=True))
self.assertSetEqual(files,
@@ -71,7 +71,7 @@ class ProgressBarTC(TestCase):
pgb.refresh()
expected_stream.write("\r["+' '*35+"]")
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue())
-
+
def test_refresh_l_size(self):
pgb_stream = StringIO()
expected_stream = StringIO()
@@ -79,7 +79,7 @@ class ProgressBarTC(TestCase):
pgb.refresh()
expected_stream.write("\r["+' '*3+"]")
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue())
-
+
def _update_test(self, nbops, expected, size = None):
pgb_stream = StringIO()
expected_stream = StringIO()