diff options
author | Azul <azul@leap.se> | 2013-01-16 13:16:38 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-01-16 13:16:38 +0100 |
commit | 1cf4cc5c8d571b571367a08f5e201be868289ed1 (patch) | |
tree | 30ae56836d67dad8521d68f29f60a25aff8c6742 /users/test/integration/api/python | |
parent | 8445e6b1a026c8f15fffae7544b84407e9bbce1b (diff) |
using subdomain for api requests properly
Diffstat (limited to 'users/test/integration/api/python')
-rwxr-xr-x | users/test/integration/api/python/flow_with_srp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/test/integration/api/python/flow_with_srp.py b/users/test/integration/api/python/flow_with_srp.py index f28aeda..df83dfb 100755 --- a/users/test/integration/api/python/flow_with_srp.py +++ b/users/test/integration/api/python/flow_with_srp.py @@ -16,7 +16,7 @@ def id_generator(size=6, chars=string.ascii_uppercase + string.digits): return ''.join(random.choice(chars) for x in range(size)) # using globals for a start -server = 'http://localhost:3000/1' +server = 'http://api.lvh.me:3000/1' login = id_generator() password = id_generator() + id_generator() |