You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ma...@apache.org on 2018/02/22 09:55:25 UTC

[incubator-openwhisk] branch master updated: Fix view mismatch in test (#3287)

This is an automated email from the ASF dual-hosted git repository.

markusthoemmes pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new e154173  Fix view mismatch in test (#3287)
e154173 is described below

commit e154173c9fa2660b660f40e422e76f2d8981f32a
Author: Mark Deuser <md...@us.ibm.com>
AuthorDate: Thu Feb 22 04:55:22 2018 -0500

    Fix view mismatch in test (#3287)
    
    The test-preparation waited on a different view than the test itself resulting in intermittent failures.
    
    Co-authored by: markusthoemmes <ma...@me.com>
---
 tests/src/test/scala/whisk/core/entity/test/ViewTests.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/src/test/scala/whisk/core/entity/test/ViewTests.scala b/tests/src/test/scala/whisk/core/entity/test/ViewTests.scala
index ae4e509..d4e0b16 100644
--- a/tests/src/test/scala/whisk/core/entity/test/ViewTests.scala
+++ b/tests/src/test/scala/whisk/core/entity/test/ViewTests.scala
@@ -375,7 +375,7 @@ class ViewTests
         end = now.plusSeconds(20)))
 
     entities foreach { put(activationStore, _) }
-    waitOnView(activationStore, namespace1.root, entities.length, WhiskActivation.view)
+    waitOnView(activationStore, namespace1.addPath(actionName), entities.length, WhiskActivation.filtersView)
 
     getActivationsInNamespaceByNameSortedByDate(
       activationStore,

-- 
To stop receiving notification emails like this one, please contact
markusthoemmes@apache.org.