diff options
| author | David Göransson <david.goransson@mullvad.net> | 2025-07-08 16:10:41 +0200 |
|---|---|---|
| committer | David Göransson <david.goransson@mullvad.net> | 2025-07-10 13:12:04 +0200 |
| commit | cbf238603a8a300613511772e32868078dff5e73 (patch) | |
| tree | 0e531e5b3342d36d12fc05219f32d7f3cbbfdfa4 /android/scripts | |
| parent | bcb4749950f75edd63b2200e4c15fc73479a7fb3 (diff) | |
| download | mullvadvpn-cbf238603a8a300613511772e32868078dff5e73.tar.xz mullvadvpn-cbf238603a8a300613511772e32868078dff5e73.zip | |
Fix incorrect check of RAAS
Diffstat (limited to 'android/scripts')
| -rwxr-xr-x | android/scripts/run-instrumented-tests.sh | 2 |
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" |
