From a2a2cb76e9582af32b6803be7fa99af074dc04ae Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Mon, 25 Oct 2010 03:18:16 +0000 Subject: Support python method invocation style on references, ref.func(...) in addition to ref('func', ...). Minor cleanup of the various samples, renamed gettotal to total and getcatalog to items, for consistency with the python sample. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1026939 13f79535-47bb-0310-9956-ffa450edef68 --- sca-cpp/trunk/modules/wsgi/http-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sca-cpp/trunk/modules/wsgi/http-test.py') diff --git a/sca-cpp/trunk/modules/wsgi/http-test.py b/sca-cpp/trunk/modules/wsgi/http-test.py index 87a8780fb3..45a1ecd3cc 100755 --- a/sca-cpp/trunk/modules/wsgi/http-test.py +++ b/sca-cpp/trunk/modules/wsgi/http-test.py @@ -22,7 +22,7 @@ from httputil import * def testClient(): c = mkclient("http://localhost:8090/wsgi") - assert c("echo", "Hey") == "Hey" + assert c.echo("Hey") == "Hey" return True if __name__ == "__main__": -- cgit v1.2.3