Skip to content

Commit

Permalink
there is not seperate publish ftest sub package anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
janwijbrand committed Oct 7, 2009
1 parent a08269d commit 92ea8de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grok/ftests/test_grok_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def http_call(method, path, data=None, **kw):
data - (body) data to submit
kw - any request parameters
"""

if path.startswith('http://localhost'):
path = path[len('http://localhost'):]
request_string = '%s %s HTTP/1.1\n' % (method, path)
Expand Down Expand Up @@ -70,7 +70,7 @@ def suiteFromPackage(name):

def test_suite():
suite = unittest.TestSuite()
for name in ['xmlrpc', 'traversal', 'form', 'url', 'security', 'publish',
for name in ['xmlrpc', 'traversal', 'form', 'url', 'security',
'utility', 'catalog', 'site', 'rest', 'viewlet','json']:
suite.addTest(suiteFromPackage(name))
return suite
Expand Down

0 comments on commit 92ea8de

Please sign in to comment.