summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2011-04-28 01:18:51 +0200
committerMarcel Hellkamp <marc@gsites.de>2011-04-28 01:18:51 +0200
commit79f247a8328e5092c69665c19d42993599c559f3 (patch)
tree198497904f5ab28b08f478d95caa0e3bf64c7982
parent823f5b16fde937b5e1f82e4791ba82818cab39d4 (diff)
downloadbottle-79f247a8328e5092c69665c19d42993599c559f3.tar.gz
Whitespace...
-rw-r--r--test/test_importhook.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_importhook.py b/test/test_importhook.py
index b6ff7a5..827307e 100644
--- a/test/test_importhook.py
+++ b/test/test_importhook.py
@@ -3,7 +3,6 @@ import unittest
import sys
import imp
-
class TestImportHooks(unittest.TestCase):
server = 'wsgiref'
@@ -12,7 +11,7 @@ class TestImportHooks(unittest.TestCase):
mod.__file__ = '<virtual %s>' % name
mod.__dict__.update(**args)
return mod
-
+
def test_direkt_import(self):
mod = self.make_module('bottle_test')
import bottle.ext.test
@@ -27,7 +26,7 @@ class TestImportHooks(unittest.TestCase):
mod = self.make_module('bottle_test', item='value')
from bottle.ext.test import item
self.assertEqual(item, 'value')
-
+
def test_import_fail(self):
''' Test a simple static page with this server adapter. '''
def test():