Skip to content

Commit

Permalink
Merge pull request #413 from Banno/update/scala-library-2.13.13
Browse files Browse the repository at this point in the history
Update scala-library to 2.13.13
  • Loading branch information
EstebanMarin committed Feb 28, 2024
2 parents fd2b35d + fea0f9f commit 09d9880
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import laika.helium.config.IconLink
import org.typelevel.sbt.gha.WorkflowStep._
import org.typelevel.sbt.site.GenericSiteSettings

val Scala213 = "2.13.12"
val Scala213 = "2.13.13"
val Scala3 = "3.3.1"
ThisBuild / crossScalaVersions := Seq("2.12.19", Scala213, Scala3)
ThisBuild / scalaVersion := crossScalaVersions.value.last
Expand Down
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 09d9880

Please sign in to comment.