diff options
| author | jrwren@xmtp.net <> | 2015-11-17 17:00:56 -0500 |
|---|---|---|
| committer | jrwren@xmtp.net <> | 2015-11-17 17:00:56 -0500 |
| commit | 1647b8e764cc12c60e2d178e7858050a7725a7a9 (patch) | |
| tree | 49c6b81007715f96d8abfd22a309f673284b2f94 /tests | |
| parent | 0ab8b24f237dfc7d64fdf8e130b6322c57ca58bd (diff) | |
fix ipv6 url
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/01_deploy_single.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/01_deploy_single.py b/tests/01_deploy_single.py index 95b48a4..885ee26 100755 --- a/tests/01_deploy_single.py +++ b/tests/01_deploy_single.py @@ -24,9 +24,9 @@ except: # Validate connectivity from $WORLD ############################################################# def validate_world_connectivity(): - addy = d.sentry['mongodb'][0].info['public-address']) + addy = d.sentry['mongodb'][0].info['public-address'] if ":" in addy: - addy =- "[{}]".format(addy) + addy = "[{}]".format(addy) client = MongoClient(addy) db = client['test'] |
