Skip to content

Commit

Permalink
Fix incorrect boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasberglund committed Aug 16, 2024
1 parent 5afa552 commit 968ea73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/scripts/run-instrumented-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ case "$TEST_TYPE" in
echo "Error: The variable PARTNER_AUTH or VALID_TEST_ACCOUNT_NUMBER must be set."
exit 1
fi
if [[ "${ENABLE_HIGHLY_RATE_LIMITED_TESTS}" == "true" ]]; then
OPTIONAL_TEST_ARGUMENTS+=" -e enable_highly_rate_limited_tests true"
if [[ "${ENABLE_HIGHLY_RATE_LIMITED_TESTS}" == "false" ]]; then
OPTIONAL_TEST_ARGUMENTS+=" -e enable_highly_rate_limited_tests false"
fi
USE_ORCHESTRATOR="true"
PACKAGE_NAME="net.mullvad.mullvadvpn"
Expand Down

0 comments on commit 968ea73

Please sign in to comment.