Skip to content

Commit

Permalink
scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioPinheiro committed Jun 25, 2024
1 parent 9fb3187 commit b5ce26d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,11 @@ object CredentialRepositorySpecSuite {
assertTrue(record0.get.metaRetries == maxRetries) &&
assertTrue(updatedRecord1.get.metaRetries == 0) && // assume the max retries is 5
assertTrue(updatedRecord1.get.metaNextRetry.isEmpty) &&
assertTrue(updatedRecord1.get.metaLastFailure == Some(FailureInfo("CredentialRepositorySpecSuite", StatusCode(999), "6 - Just to test")))
assertTrue(
updatedRecord1.get.metaLastFailure == Some(
FailureInfo("CredentialRepositorySpecSuite", StatusCode(999), "6 - Just to test")
)
)

}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,11 @@ object PresentationRepositorySpecSuite {
assertTrue(record0.get.metaRetries == maxRetries) &&
assertTrue(updatedRecord1.get.metaRetries == 0) && // assume the max retries is 5
assertTrue(updatedRecord1.get.metaNextRetry.isEmpty) &&
assertTrue(updatedRecord1.get.metaLastFailure.contains(FailureInfo("PresentationRepositorySpecSuite", StatusCode(999), "6 - Just to test")))
assertTrue(
updatedRecord1.get.metaLastFailure.contains(
FailureInfo("PresentationRepositorySpecSuite", StatusCode(999), "6 - Just to test")
)
)
}
}
).provideSomeLayer(ZLayer.succeed(WalletAccessContext(WalletId.random)))
Expand Down

0 comments on commit b5ce26d

Please sign in to comment.