summaryrefslogtreecommitdiffhomepage
path: root/android/app/src/androidTest
diff options
context:
space:
mode:
authorJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-09-25 10:42:55 +0200
committerJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-09-25 10:42:55 +0200
commit56c3745b7852ec992e629d3f66b3e206a70f624e (patch)
tree00a4237fbefe7abcc5a4de878e971bfffbee0384 /android/app/src/androidTest
parent3e9857bdb6b028b2a3be4f722060486110d8094e (diff)
parentd42012bf8f20a8b333f229923a32c37a518e525d (diff)
downloadmullvadvpn-56c3745b7852ec992e629d3f66b3e206a70f624e.tar.xz
mullvadvpn-56c3745b7852ec992e629d3f66b3e206a70f624e.zip
Merge branch 'add-informative-text-when-there-are-no-matching-server-droid-2178'
Diffstat (limited to 'android/app/src/androidTest')
-rw-r--r--android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/CustomListLocationsScreenTest.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/CustomListLocationsScreenTest.kt b/android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/CustomListLocationsScreenTest.kt
index 2bb37b6d47..63c6ecef95 100644
--- a/android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/CustomListLocationsScreenTest.kt
+++ b/android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/CustomListLocationsScreenTest.kt
@@ -227,7 +227,7 @@ class CustomListLocationsScreenTest {
)
// Assert
- onNodeWithText(NO_LOCATIONS_FOUND_TEXT).assertExists()
+ onNodeWithText(NO_MATCHING_SERVERS_FOUNDS).assertExists()
}
@Test
@@ -294,5 +294,6 @@ class CustomListLocationsScreenTest {
const val SEARCH_PLACEHOLDER = "Search for..."
const val EMPTY_SEARCH = "No result for \"%s\", please try a different search"
const val NO_LOCATIONS_FOUND_TEXT = "No locations found"
+ const val NO_MATCHING_SERVERS_FOUNDS = "No matching servers found."
}
}