diff options
author | ianb <devnull@localhost> | 2005-08-22 22:38:27 +0000 |
---|---|---|
committer | ianb <devnull@localhost> | 2005-08-22 22:38:27 +0000 |
commit | 3ee43eeddecc7f7939e03caa23e5a4edfba2f8e2 (patch) | |
tree | a59e21163a3f717ef442dfd783c30a5b1227e14d /tests/test_urlparser.py | |
parent | b9ce081836c4662880362adfe68ef37cbdae6f77 (diff) | |
download | paste-3ee43eeddecc7f7939e03caa23e5a4edfba2f8e2.tar.gz |
paste.deployified urlparser
Diffstat (limited to 'tests/test_urlparser.py')
-rw-r--r-- | tests/test_urlparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_urlparser.py b/tests/test_urlparser.py index 292df0a..5a1d518 100644 --- a/tests/test_urlparser.py +++ b/tests/test_urlparser.py @@ -7,7 +7,7 @@ def path(name): 'urlparser_data', name) def make_app(name): - app = URLParser(path(name), name, {'index_names': ['index', 'Main']}) + app = URLParser({}, path(name), name, index_names=['index', 'Main']) testapp = TestApp(app) return testapp |