Skip to content

Commit

Permalink
Fixed Junit tests.| #1188
Browse files Browse the repository at this point in the history
  • Loading branch information
DenBond7 committed Nov 23, 2021
1 parent a41dcf0 commit b7fdee2
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ class PgpKeyTest {
val expected = PgpKeyDetails(
isFullyDecrypted = true,
isFullyEncrypted = false,
isRevoked = false,
privateKey = null,
publicKey= loadResourceAsString(
publicKey = loadResourceAsString(
"keys/E76853E128A0D376CAE47C143A30F4CC0A9A8F10.public.gpg-key"
).replace("@@VERSION_NAME@@", BuildConfig.VERSION_NAME),
users = listOf("Test <[email protected]>"),
Expand All @@ -70,8 +71,9 @@ class PgpKeyTest {
val expected = PgpKeyDetails(
isFullyDecrypted = true,
isFullyEncrypted = false,
isRevoked = false,
privateKey = null,
publicKey= loadResourceAsString(
publicKey = loadResourceAsString(
"keys/6D3E09867544EE627F2E928FBEE3A42D9A9C8AC9.public.gpg-key"
).replace("@@VERSION_NAME@@", BuildConfig.VERSION_NAME),
users = listOf("<[email protected]>"),
Expand Down

0 comments on commit b7fdee2

Please sign in to comment.