Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FlowCrypt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ dependencies {
implementation("com.google.android.flexbox:flexbox:3.0.0")
implementation("com.google.code.gson:gson:2.13.1")
implementation("com.google.api-client:google-api-client-android:2.7.2")
implementation("com.google.apis:google-api-services-gmail:v1-rev20240520-2.0.0")
implementation("com.google.apis:google-api-services-gmail:v1-rev20250331-2.0.0")
//ACRA needs the following dependency to use a custom report sender
implementation("com.google.auto.service:auto-service-annotations:1.1.1")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,15 @@ class UpdatePrivateKeyWithPassPhraseInDatabaseFlowTest : BaseTest() {
onView(withId(R.id.buttonPositiveAction))
.perform(scrollTo(), click())

waitForObjectWithText(getResString(R.string.key_details), TimeUnit.SECONDS.toMillis(60))
val dateAfterUpdating = getResString(
R.string.template_modified,
dateFormat.format(Date(requireNotNull(updatedKeyDetails.lastModified)))
)
waitForObjectWithText(dateAfterUpdating, TimeUnit.SECONDS.toMillis(60))

//do checks after update
//do checks after updating
onView(
withText(
getResString(
R.string.template_modified,
dateFormat.format(Date(requireNotNull(updatedKeyDetails.lastModified)))
)
)
withText(dateAfterUpdating)
).check(matches(isDisplayed()))

val existingRecipientWithPubKeysAfterUpdate = runBlocking {
Expand Down