Firebase token: the beginning of the token is always the same, print out the end of it.
This commit is contained in:
parent
4a246687e2
commit
4aa1afec5a
2 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ class FirebaseTokenTest @Inject constructor(
|
|||
delegate.updateState(
|
||||
description = stringProvider.getString(
|
||||
R.string.troubleshoot_notifications_test_firebase_token_success,
|
||||
"${token.take(8)}*****"
|
||||
"*****${token.takeLast(8)}"
|
||||
),
|
||||
status = NotificationTroubleshootTestState.Status.Success
|
||||
)
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class FirebaseTokenTestTest {
|
|||
assertThat(awaitItem().status).isEqualTo(NotificationTroubleshootTestState.Status.InProgress)
|
||||
val lastItem = awaitItem()
|
||||
assertThat(lastItem.status).isEqualTo(NotificationTroubleshootTestState.Status.Success)
|
||||
assertThat(lastItem.description).contains(FAKE_TOKEN.take(8))
|
||||
assertThat(lastItem.description).contains(FAKE_TOKEN.takeLast(8))
|
||||
assertThat(lastItem.description).doesNotContain(FAKE_TOKEN)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue