diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/README.md | 2 | ||||
| -rwxr-xr-x | test/scripts/ci-runtests.sh | 2 | ||||
| -rwxr-xr-x | test/test-by-version.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/README.md b/test/README.md index 6aaff56d2f..112edb65d9 100644 --- a/test/README.md +++ b/test/README.md @@ -166,4 +166,4 @@ cargo run --bin test-manager run-tests --vm macos-ventura \ ## Note on `scripts/ci-runtests.sh` -`scripts/ci-runtests.sh` is the script that GitHub actions uses to invokes the `test-manager`, with similar functionality as `test-by-version.sh`. Note that account tokens are read (newline-delimited) from the path specified by the environment variable `ACCOUNT_TOKENS`. Round robin is used to select an account for each VM. +`scripts/ci-runtests.sh` is the script that GitHub actions uses to invokes the `test-manager`, with similar functionality as `test-by-version.sh`. Note that account numbers are read (newline-delimited) from the path specified by the environment variable `ACCOUNT_TOKENS`. Round robin is used to select an account for each VM. diff --git a/test/scripts/ci-runtests.sh b/test/scripts/ci-runtests.sh index 3e64894e74..4aeab28271 100755 --- a/test/scripts/ci-runtests.sh +++ b/test/scripts/ci-runtests.sh @@ -27,7 +27,7 @@ if [[ -z "${ACCOUNT_TOKENS+x}" ]]; then exit 1 fi if ! readarray -t tokens < "${ACCOUNT_TOKENS}"; then - echo "Specify account tokens in 'ACCOUNT_TOKENS' file" 1>&2 + echo "Specify account numbers in 'ACCOUNT_TOKENS' file" 1>&2 exit 1 fi CI_LOGS_DIR="$TEST_DIR/.ci-logs" diff --git a/test/test-by-version.sh b/test/test-by-version.sh index 56e1354419..337a0dfe83 100755 --- a/test/test-by-version.sh +++ b/test/test-by-version.sh @@ -6,7 +6,7 @@ usage() { echo "This script downloads and tests the given app version from the build repositories." echo echo "Required environment variables:" - echo " - ACCOUNT_TOKEN: Valid MullvadVPN account token" + echo " - ACCOUNT_TOKEN: Valid MullvadVPN account number" echo " - TEST_OS: Name of the VM configuration to use. List available configurations with 'cargo run --bin test-manager list'" echo "Optional environment variables:" echo " - APP_VERSION: The version of the app to test (defaults to the latest stable release)" |
