Skip to content

Commit

Permalink
fix jvm compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Aug 28, 2024
1 parent d529b2a commit b18ea9f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JKSProviderTest : FreeSpec({
try {
val alias = "Elfenbeinturm"

val ks1 = SigningProvider {
val ks1 = JKSProvider {
keystoreFile {
file = tempfile
password = "Schwertfischfilet".toCharArray()
Expand All @@ -45,7 +45,7 @@ class JKSProviderTest : FreeSpec({
it.createSigningKey(alias) should succeed
}

SigningProvider {
JKSProvider {
keystoreFile {
file = tempfile
password = "Bartfischfilet".toCharArray()
Expand All @@ -55,7 +55,7 @@ class JKSProviderTest : FreeSpec({
it.getSignerForKey(alias) shouldNot succeed
}

SigningProvider {
JKSProvider {
keystoreFile {
file = tempfile
password = "Schwertfischfilet".toCharArray()
Expand Down

0 comments on commit b18ea9f

Please sign in to comment.