We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90395bd commit 2e815a0Copy full SHA for 2e815a0
src/test/resources/application.conf
@@ -19,7 +19,7 @@ unit.test.local.mongo.server {
19
backend = "h2"
20
h2 {
21
inMemory = false
22
- path = "/tmp/local-unit-test-server.mv"
+ path = ""
23
}
24
25
src/test/scala/com/sfxcode/nosql/mongo/server/ServerConfigSpec.scala
@@ -21,7 +21,7 @@ class ServerConfigSpec extends Specification {
config.port mustEqual 28028
config.serverName mustEqual "local-unit-test-server"
config.h2BackendConfig.get.inMemory must beFalse
- config.h2BackendConfig.get.path mustEqual "/tmp/local-unit-test-server.mv"
+ config.h2BackendConfig.get.path mustEqual ""
26
27
0 commit comments