summaryrefslogtreecommitdiff
path: root/tests/e2e/check_ip
diff options
context:
space:
mode:
Diffstat (limited to 'tests/e2e/check_ip')
-rwxr-xr-xtests/e2e/check_ip5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/e2e/check_ip b/tests/e2e/check_ip
index b915d27..4b90325 100755
--- a/tests/e2e/check_ip
+++ b/tests/e2e/check_ip
@@ -6,6 +6,7 @@ import sys
DEMO_ISPS = ('Riseup Networks',
'Leaseweb Deutschland GmbH')
+CI_LEAP_SE_ISPS = ('AS47172 Greenhost BV')
url = 'https://ipapi.co/json'
@@ -28,10 +29,10 @@ try:
if cmd == 'vpn_on':
print('checking VPN ON...')
- assert isp in DEMO_ISPS
+ assert isp in CI_LEAP_SE_ISPS
elif cmd == 'vpn_off':
print('checking VPN OFF...')
- assert isp not in DEMO_ISPS
+ assert isp not in CI_LEAP_SE_ISPS
else:
raise BadCmd()