Commit b9679862 authored by Lennart Regebro's avatar Lennart Regebro

Whitespace fix.

parent 3f7bc9df
...@@ -9,11 +9,11 @@ from ZPublisher.HTTPResponse import HTTPResponse ...@@ -9,11 +9,11 @@ from ZPublisher.HTTPResponse import HTTPResponse
def makeBaseRequest(root): def makeBaseRequest(root):
response = HTTPResponse() response = HTTPResponse()
environment = { 'URL': '', environment = { 'URL': '',
'PARENTS': [root], 'PARENTS': [root],
'steps': [], 'steps': [],
'_hacked_path': 0, '_hacked_path': 0,
'_test_counter': 0, '_test_counter': 0,
'response': response } 'response': response }
return BaseRequest(environment) return BaseRequest(environment)
...@@ -26,8 +26,8 @@ class DummyObjectBasic(Implicit): ...@@ -26,8 +26,8 @@ class DummyObjectBasic(Implicit):
class BrokenHook: class BrokenHook:
def __call__(self, *args): def __call__(self, *args):
print self.__class__.__name__, 'called' print self.__class__.__name__, 'called'
raise TypeError, self.__class__.__name__ raise TypeError, self.__class__.__name__
def testBeforeTraverse(self): def testBeforeTraverse(self):
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment