You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2017/05/17 21:58:55 UTC

[1/2] incubator-iota git commit: Fixing unit tests for shared performers

Repository: incubator-iota
Updated Branches:
  refs/heads/master cf172dc6e -> bd95509b9


Fixing unit tests for shared performers


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/0bb88b4a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/0bb88b4a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/0bb88b4a

Branch: refs/heads/master
Commit: 0bb88b4ab25284b00163a10eaa3419ba0690caa3
Parents: cf172dc
Author: Barbara Gomes <ba...@gmail.com>
Authored: Wed May 17 10:30:15 2017 -0400
Committer: Barbara Gomes <ba...@gmail.com>
Committed: Wed May 17 10:30:15 2017 -0400

----------------------------------------------------------------------
 fey-core/src/test/scala/org/apache/iota/fey/FeyCoreSpec.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/0bb88b4a/fey-core/src/test/scala/org/apache/iota/fey/FeyCoreSpec.scala
----------------------------------------------------------------------
diff --git a/fey-core/src/test/scala/org/apache/iota/fey/FeyCoreSpec.scala b/fey-core/src/test/scala/org/apache/iota/fey/FeyCoreSpec.scala
index 426614e..766e3d6 100644
--- a/fey-core/src/test/scala/org/apache/iota/fey/FeyCoreSpec.scala
+++ b/fey-core/src/test/scala/org/apache/iota/fey/FeyCoreSpec.scala
@@ -111,8 +111,8 @@ class FeyCoreSpec extends BaseAkkaSpec  {
   }
 
   "Sending FeyCore.JSON_TREE to FeyCore" should {
-    s"result in logging a 6 path messages at Info " in {
-      EventFilter.info(pattern = s"^akka://.*/user/.*", occurrences = 7) intercept {
+    s"result in logging a 8 path messages at Info " in {
+      EventFilter.info(pattern = s"^akka://.*/user/.*", occurrences = 8) intercept {
         feyCoreRef ! FeyCore.JSON_TREE
       }
     }


[2/2] incubator-iota git commit: Fixing unit tests for shared performers

Posted by to...@apache.org.
Fixing unit tests for shared performers


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/bd95509b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/bd95509b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/bd95509b

Branch: refs/heads/master
Commit: bd95509b9c336db16ff3cae11001829adfde1c33
Parents: 0bb88b4
Author: Barbara Gomes <ba...@gmail.com>
Authored: Wed May 17 12:59:05 2017 -0400
Committer: Barbara Gomes <ba...@gmail.com>
Committed: Wed May 17 12:59:05 2017 -0400

----------------------------------------------------------------------
 fey-core/src/test/scala/org/apache/iota/fey/UtilsSpec.scala | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/bd95509b/fey-core/src/test/scala/org/apache/iota/fey/UtilsSpec.scala
----------------------------------------------------------------------
diff --git a/fey-core/src/test/scala/org/apache/iota/fey/UtilsSpec.scala b/fey-core/src/test/scala/org/apache/iota/fey/UtilsSpec.scala
index 865e10d..0d5213a 100644
--- a/fey-core/src/test/scala/org/apache/iota/fey/UtilsSpec.scala
+++ b/fey-core/src/test/scala/org/apache/iota/fey/UtilsSpec.scala
@@ -172,6 +172,7 @@ class UtilsSpec extends BaseAkkaSpec{
       ensembles should have size(1)
       Json.stringify(ensembles(0).as[JsValue]) should equal(Json.stringify(jsonObj))
       new File(s"${CONFIG.CHECKPOINT_DIR}/TEST_ORCHESTRATION_FOR_UTILS.json").delete()
+      FEY_CACHE.activeOrchestrations.remove("TEST_ORCHESTRATION_FOR_UTILS")
     }
   }