summaryrefslogtreecommitdiffhomepage
path: root/android/scripts
diff options
context:
space:
mode:
authorDavid Göransson <david.goransson@mullvad.net>2025-07-08 16:10:41 +0200
committerDavid Göransson <david.goransson@mullvad.net>2025-07-10 13:12:04 +0200
commitcbf238603a8a300613511772e32868078dff5e73 (patch)
tree0e531e5b3342d36d12fc05219f32d7f3cbbfdfa4 /android/scripts
parentbcb4749950f75edd63b2200e4c15fc73479a7fb3 (diff)
downloadmullvadvpn-cbf238603a8a300613511772e32868078dff5e73.tar.xz
mullvadvpn-cbf238603a8a300613511772e32868078dff5e73.zip
Fix incorrect check of RAAS
Diffstat (limited to 'android/scripts')
-rwxr-xr-xandroid/scripts/run-instrumented-tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/scripts/run-instrumented-tests.sh b/android/scripts/run-instrumented-tests.sh
index 86035942f9..7cc0034494 100755
--- a/android/scripts/run-instrumented-tests.sh
+++ b/android/scripts/run-instrumented-tests.sh
@@ -145,7 +145,7 @@ case "$TEST_TYPE" in
OPTIONAL_TEST_ARGUMENTS+=" -e mullvad.test.e2e.config.raas.enable $ENABLE_RAAS_TESTS"
- if [[ -n ${ENABLE_RAAS_TESTS} ]]; then
+ if [[ ${ENABLE_RAAS_TESTS} == "true" ]]; then
echo "Tests dependent on local API enabled"
OPTIONAL_TEST_ARGUMENTS+=" -e mullvad.test.e2e.config.raas.host $RAAS_HOST"
OPTIONAL_TEST_ARGUMENTS+=" -e mullvad.test.e2e.config.raas.trafficGenerator.target.host $RAAS_TRAFFIC_GENERATOR_TARGET_HOST"