summaryrefslogtreecommitdiffhomepage
path: root/android/test/e2e/src
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim.hulthe@mullvad.net>2024-09-30 15:11:59 +0200
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2024-10-01 16:04:53 +0200
commitfd8f186f7289760532ee0ed56c3405c5700e9822 (patch)
tree576ffb14c14a666371f0fea2bd784f64ce411187 /android/test/e2e/src
parent5ed9fdaff6dcb709a0c1a4101c444c697cb948bc (diff)
downloadmullvadvpn-fd8f186f7289760532ee0ed56c3405c5700e9822.tar.xz
mullvadvpn-fd8f186f7289760532ee0ed56c3405c5700e9822.zip
Rename account "token" to account "number"
Diffstat (limited to 'android/test/e2e/src')
-rw-r--r--android/test/e2e/src/main/kotlin/net/mullvad/mullvadvpn/test/e2e/misc/SimpleMullvadHttpClient.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/test/e2e/src/main/kotlin/net/mullvad/mullvadvpn/test/e2e/misc/SimpleMullvadHttpClient.kt b/android/test/e2e/src/main/kotlin/net/mullvad/mullvadvpn/test/e2e/misc/SimpleMullvadHttpClient.kt
index d7fcfb05e8..3373691923 100644
--- a/android/test/e2e/src/main/kotlin/net/mullvad/mullvadvpn/test/e2e/misc/SimpleMullvadHttpClient.kt
+++ b/android/test/e2e/src/main/kotlin/net/mullvad/mullvadvpn/test/e2e/misc/SimpleMullvadHttpClient.kt
@@ -31,7 +31,7 @@ class SimpleMullvadHttpClient(context: Context) {
}
fun login(accountNumber: String): String {
- Logger.v("Attempt login with account token: $accountNumber")
+ Logger.v("Attempt login with account number: $accountNumber")
val json = JSONObject().apply { put("account_number", accountNumber) }
return sendSimpleSynchronousRequest(Request.Method.POST, AUTH_URL, json)!!.let { response ->
response.getString("access_token").also { accessToken ->