diff options
Diffstat (limited to 'proxy/code/scripts/test-userapi.py')
-rwxr-xr-x | proxy/code/scripts/test-userapi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proxy/code/scripts/test-userapi.py b/proxy/code/scripts/test-userapi.py index 59598dd..32714e9 100755 --- a/proxy/code/scripts/test-userapi.py +++ b/proxy/code/scripts/test-userapi.py @@ -18,6 +18,6 @@ rsp = response.read() conn.close() print rsp -#response = urllib.urlopen('http://localhost:8080/candlepin/helloworld') -#rsp = response.read() -#print(rsp) +response = urllib.urlopen('http://localhost:8080/candlepin/user/candlepin') +rsp = response.read() +print(rsp) |