From a91948d5384a52c7a5f0480acd3e61966e7f73bc Mon Sep 17 00:00:00 2001 From: Debasish Ghosh Date: Mon, 24 May 2010 15:43:56 +0530 Subject: [PATCH] disabled tests for akka-persistence-redis to be run automatically --- project/build/AkkaProject.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build/AkkaProject.scala b/project/build/AkkaProject.scala index 26820f03c3..aff2050f09 100644 --- a/project/build/AkkaProject.scala +++ b/project/build/AkkaProject.scala @@ -199,7 +199,7 @@ class AkkaParent(info: ProjectInfo) extends DefaultProject(info) { class AkkaRedisProject(info: ProjectInfo) extends AkkaDefaultProject(info, distPath) { val redis = "com.redis" % "redisclient" % "2.8.0.RC2-1.4-SNAPSHOT" % "compile" - override def testOptions = TestFilter((name: String) => name.endsWith("Spec")) :: Nil + override def testOptions = TestFilter((name: String) => name.endsWith("Test")) :: Nil } class AkkaMongoProject(info: ProjectInfo) extends AkkaDefaultProject(info, distPath) {