summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine A <>2024-04-04 17:22:56 +0200
committerAntoine A <>2024-04-04 17:22:56 +0200
commit1d0b49b20fd8040cb4f5eeca60707195e6242c87 (patch)
tree60b4dfa997a385c8a11024af47167f4c115c2e09
parentc0c88621b708e1d3e0b6e99da8c7844f6945d286 (diff)
downloadlibeufin-1d0b49b20fd8040cb4f5eeca60707195e6242c87.tar.gz
libeufin-1d0b49b20fd8040cb4f5eeca60707195e6242c87.tar.bz2
libeufin-1d0b49b20fd8040cb4f5eeca60707195e6242c87.zip
Fix CI
-rw-r--r--common/src/test/kotlin/ConfigTest.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/test/kotlin/ConfigTest.kt b/common/src/test/kotlin/ConfigTest.kt
index 1450c18e..d27e9512 100644
--- a/common/src/test/kotlin/ConfigTest.kt
+++ b/common/src/test/kotlin/ConfigTest.kt
@@ -58,7 +58,7 @@ class ConfigTest {
assertEquals("jdbc:postgresql://localhost/?user=$user&socketFactory=org.newsclub.net.unix.AFUNIXSocketFactory\$FactoryArg&socketFactoryArg=/var/run/postgresql/.s.PGSQL.1234", jdbcFromPg("postgresql:///"))
}
withEnvironmentVariable("PGPORT", "1234").and("PGHOST", "/tmp").execute {
- assertEquals("jdbc:postgresql://localhost/?user=antoine&socketFactory=org.newsclub.net.unix.AFUNIXSocketFactory\$FactoryArg&socketFactoryArg=/tmp/.s.PGSQL.1234", jdbcFromPg("postgresql:///"))
+ assertEquals("jdbc:postgresql://localhost/?user=$user&socketFactory=org.newsclub.net.unix.AFUNIXSocketFactory\$FactoryArg&socketFactoryArg=/tmp/.s.PGSQL.1234", jdbcFromPg("postgresql:///"))
}
}
} \ No newline at end of file