diff options
| author | Jonatan Rhodin <jonatan.rhodin@mullvad.net> | 2025-09-24 13:18:17 +0200 |
|---|---|---|
| committer | Jonatan Rhodin <jonatan.rhodin@mullvad.net> | 2025-09-25 10:42:33 +0200 |
| commit | d42012bf8f20a8b333f229923a32c37a518e525d (patch) | |
| tree | 00a4237fbefe7abcc5a4de878e971bfffbee0384 /android | |
| parent | 4efa24bbf4ae17b9a5aa2cc3385a84b43096f5d7 (diff) | |
| download | mullvadvpn-d42012bf8f20a8b333f229923a32c37a518e525d.tar.xz mullvadvpn-d42012bf8f20a8b333f229923a32c37a518e525d.zip | |
Fix no locations found test
Diffstat (limited to 'android')
| -rw-r--r-- | android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/screen/CustomListLocationsScreenTest.kt | 3 |
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." } } |
