summaryrefslogtreecommitdiff
path: root/tests/test_grantip.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_grantip.py')
-rw-r--r--tests/test_grantip.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_grantip.py b/tests/test_grantip.py
index 2ddf7f1..cd5c98a 100644
--- a/tests/test_grantip.py
+++ b/tests/test_grantip.py
@@ -1,7 +1,7 @@
from paste.auth import grantip
from paste.fixture import *
-def test_make_app():
+def _make_app():
def application(environ, start_response):
start_response('200 OK', [('content-type', 'text/plain')])
lines = [
@@ -23,7 +23,7 @@ def test_make_app():
return app
def test_req():
- app = test_make_app()
+ app = _make_app()
def doit(remote_addr):
res = app.get('/', extra_environ={'REMOTE_ADDR': remote_addr})
return res.body