summaryrefslogtreecommitdiff
path: root/cliapp/hookmgr_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-06-09 17:57:38 +0100
committerLars Wirzenius <liw@liw.fi>2013-06-09 17:57:38 +0100
commitb6f560321a30a8aff7adf4efecefb78180847686 (patch)
treeb46e77eecb1f6190b197d4283150d8390ff48abe /cliapp/hookmgr_tests.py
parent77de905c50bb3bcbbd4c41a841745e5e1b9c1d0f (diff)
downloadcliapp-b6f560321a30a8aff7adf4efecefb78180847686.tar.gz
Remove trailing whitespace from ends of lines
Diffstat (limited to 'cliapp/hookmgr_tests.py')
-rw-r--r--cliapp/hookmgr_tests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/cliapp/hookmgr_tests.py b/cliapp/hookmgr_tests.py
index 9957d00..7abdeba 100644
--- a/cliapp/hookmgr_tests.py
+++ b/cliapp/hookmgr_tests.py
@@ -1,15 +1,15 @@
# Copyright (C) 2009-2012 Lars Wirzenius
-#
+#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@@ -25,7 +25,7 @@ class HookManagerTests(unittest.TestCase):
def setUp(self):
self.hooks = HookManager()
self.hooks.new('foo', FilterHook())
-
+
def callback(self, *args, **kwargs):
self.args = args
self.kwargs = kwargs
@@ -33,10 +33,10 @@ class HookManagerTests(unittest.TestCase):
def test_has_no_tests_initially(self):
hooks = HookManager()
self.assertEqual(hooks.hooks, {})
-
+
def test_adds_new_hook(self):
self.assert_(self.hooks.hooks.has_key('foo'))
-
+
def test_adds_callback(self):
self.hooks.add_callback('foo', self.callback)
self.assertEqual(self.hooks.hooks['foo'].callbacks, [self.callback])