summaryrefslogtreecommitdiffhomepage
path: root/android/test/e2e/src
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim.hulthe@mullvad.net>2024-10-01 16:27:02 +0200
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2024-10-01 16:27:02 +0200
commitffa5d846607f680a35b59266845196c34971a2ba (patch)
tree576ffb14c14a666371f0fea2bd784f64ce411187 /android/test/e2e/src
parent5ed9fdaff6dcb709a0c1a4101c444c697cb948bc (diff)
parentfd8f186f7289760532ee0ed56c3405c5700e9822 (diff)
downloadmullvadvpn-ffa5d846607f680a35b59266845196c34971a2ba.tar.xz
mullvadvpn-ffa5d846607f680a35b59266845196c34971a2ba.zip
Merge branch 'rename-account_token-account_number-des-1029'
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 ->