From e433eda2c2a73832e93ae79b4fc3c8fc9a8311ec Mon Sep 17 00:00:00 2001 From: Peter Veentjer Date: Mon, 8 Aug 2011 09:11:39 +0300 Subject: [PATCH] fix for a failing test:who changes the compression to none but didn't fix the testsgit add -A..you badgit add -A --- .../src/test/scala/akka/actor/actor/ClusterSpec.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-actor-tests/src/test/scala/akka/actor/actor/ClusterSpec.scala b/akka-actor-tests/src/test/scala/akka/actor/actor/ClusterSpec.scala index 9569e1bed5..2bec70e6f5 100644 --- a/akka-actor-tests/src/test/scala/akka/actor/actor/ClusterSpec.scala +++ b/akka-actor-tests/src/test/scala/akka/actor/actor/ClusterSpec.scala @@ -6,7 +6,7 @@ import akka.config.Config class ClusterSpec extends WordSpec with MustMatchers { - "A Deployer" must { + "ClusterSpec: A Deployer" must { "be able to parse 'akka.actor.cluster._' config elements" in { import Config.config._ @@ -21,7 +21,7 @@ class ClusterSpec extends WordSpec with MustMatchers { getInt("akka.cluster.connection-timeout") must equal(Some(60)) getInt("akka.cluster.remote-daemon-ack-timeout") must equal(Some(30)) getBool("akka.cluster.include-ref-node-in-replica-set") must equal(Some(true)) - getString("akka.cluster.compression-scheme") must equal(Some("zlib")) + getString("akka.cluster.compression-scheme") must equal(Some("")) getInt("akka.cluster.zlib-compression-level") must equal(Some(6)) getString("akka.cluster.layer") must equal(Some("akka.remote.netty.NettyRemoteSupport")) getString("akka.cluster.secure-cookie") must equal(Some(""))