[Zope3-checkins] CVS: Zope3/src/zope/app/browser/skins/tests - test_menu.py:1.1.2.4
Tim Peters
tim.one@comcast.net
Tue, 24 Dec 2002 21:21:50 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/skins/tests
In directory cvs.zope.org:/tmp/cvs-serv19240/src/zope/app/browser/skins/tests
Modified Files:
Tag: NameGeddon-branch
test_menu.py
Log Message:
Whitespace normalization, via Python's Tools/scripts/reindent.py. The
files are fixed-points of that script now. Fixed a few cases where
code relied on significant trailing whitespace (ouch).
=== Zope3/src/zope/app/browser/skins/tests/test_menu.py 1.1.2.3 => 1.1.2.4 ===
--- Zope3/src/zope/app/browser/skins/tests/test_menu.py:1.1.2.3 Tue Dec 24 13:41:17 2002
+++ Zope3/src/zope/app/browser/skins/tests/test_menu.py Tue Dec 24 21:20:20 2002
@@ -2,14 +2,14 @@
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
-#
+#
##############################################################################
"""
@@ -64,7 +64,7 @@
def __init__(self, context, request):
self.context = context
self.request = request
-
+
def __call__(self):
pass
@@ -102,11 +102,10 @@
return IBrowserPresentation
def getPresentationSkin(self):
return ''
-
+
def test_suite():
loader = unittest.TestLoader()
return loader.loadTestsFromTestCase(Test)
if __name__=='__main__':
unittest.TextTestRunner().run(test_suite())
-