Skip to content

Commit

Permalink
Fix deprecatia
Browse files Browse the repository at this point in the history
  • Loading branch information
rossabaker committed Feb 27, 2024
1 parent bb60d6d commit fea0f9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/test/scala/com/banno/vault/VaultSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ class VaultSpec
PropF.forAllF(VaultArbitraries.validVaultUri) { uri =>
Vault
.renewSelfToken[IO](mockClient, uri)(
VaultToken(clientToken, 3600, true),
VaultToken(clientToken, 3600, renewable = true),
1.hour
)
.assertEquals(VaultToken(clientToken, 3600, renewable))
Expand All @@ -619,7 +619,7 @@ class VaultSpec
PropF.forAllF(VaultArbitraries.validVaultUri) { uri =>
Vault
.revokeSelfToken[IO](mockClient, uri)(
VaultToken(clientToken, 3600, true)
VaultToken(clientToken, 3600, renewable = true)
)
.assertEquals(())
}
Expand Down

0 comments on commit fea0f9f

Please sign in to comment.