Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
update to configgy 1.4.3 and use "false" instead of "off" as a valid …
Browse files Browse the repository at this point in the history
…boolean value
  • Loading branch information
blair committed Nov 17, 2009
1 parent 5c94c1e commit c20e459
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ivy/ivy.xml
Expand Up @@ -21,7 +21,7 @@
<dependency org="org.scala-tools.testing" name="specs" rev="1.4.4" conf="test->*"/>
<dependency org="junit" name="junit" rev="4.5" conf="test->*" />

<dependency org="net.lag" name="configgy" rev="1.3" />
<dependency org="net.lag" name="configgy" rev="1.4.3" />
<dependency org="net.lag" name="naggati" rev="0.7" />
<dependency org="org.apache.mina" name="mina-core" rev="2.0.0-M4" />
<dependency org="org.slf4j" name="slf4j-api" rev="1.5.2" />
Expand Down
6 changes: 3 additions & 3 deletions src/test/scala/net/lag/kestrel/PersistentQueueSpec.scala
Expand Up @@ -582,7 +582,7 @@ object PersistentQueueSpec extends Specification with TestHelper {
"PersistentQueue with no journal" should {
"create no journal" in {
withTempFolder {
val q = makeQueue("mem", "journal" -> "off")
val q = makeQueue("mem", "journal" -> "false")
q.setup

q.add("coffee".getBytes)
Expand All @@ -593,12 +593,12 @@ object PersistentQueueSpec extends Specification with TestHelper {

"lose all data after being destroyed" in {
withTempFolder {
val q = makeQueue("mem", "journal" -> "off")
val q = makeQueue("mem", "journal" -> "false")
q.setup
q.add("coffee".getBytes)
q.close

val q2 = makeQueue("mem", "journal" -> "off")
val q2 = makeQueue("mem", "journal" -> "false")
q2.setup
q2.remove mustEqual None
}
Expand Down

0 comments on commit c20e459

Please sign in to comment.