serialize-creators=off in tests, #23003

This commit is contained in:
Patrik Nordwall 2017-05-22 20:11:03 +02:00
parent 110dcdc916
commit edef9e34c7
15 changed files with 2 additions and 45 deletions

View file

@ -7,10 +7,9 @@ import akka.testkit.AkkaSpec
class SerializationChecksPlainRemotingSpec extends AkkaSpec {
"Settings serialize-messages and serialize-creators" must {
"Settings serialize-messages" must {
"be on for tests" in {
system.settings.SerializeAllCreators should ===(true)
system.settings.SerializeAllMessages should ===(true)
}

View file

@ -1,15 +0,0 @@
/**
* Copyright (C) 2009-2017 Lightbend Inc. <http://www.lightbend.com>
*/
package akka.remote
import akka.testkit.AkkaSpec
class SerializeCreatorsVerificationSpec extends AkkaSpec {
"serialize-creators should be on" in {
system.settings.SerializeAllCreators should ===(true)
}
}