Skip to content

Commit 968ea73

Browse files
Fix incorrect boolean
1 parent 5afa552 commit 968ea73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/scripts/run-instrumented-tests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ case "$TEST_TYPE" in
131131
echo "Error: The variable PARTNER_AUTH or VALID_TEST_ACCOUNT_NUMBER must be set."
132132
exit 1
133133
fi
134-
if [[ "${ENABLE_HIGHLY_RATE_LIMITED_TESTS}" == "true" ]]; then
135-
OPTIONAL_TEST_ARGUMENTS+=" -e enable_highly_rate_limited_tests true"
134+
if [[ "${ENABLE_HIGHLY_RATE_LIMITED_TESTS}" == "false" ]]; then
135+
OPTIONAL_TEST_ARGUMENTS+=" -e enable_highly_rate_limited_tests false"
136136
fi
137137
USE_ORCHESTRATOR="true"
138138
PACKAGE_NAME="net.mullvad.mullvadvpn"

0 commit comments

Comments
 (0)