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

sanjeevrk pushed a commit to branch retry_creation
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/retry_creation by this push:
     new f62c945  Fix unittest
f62c945 is described below

commit f62c9452aef07de1eb6257bc6871eaff93a880ee
Author: Sanjeev Kulkarni <sanj...@streaml.io>
AuthorDate: Mon Mar 4 11:21:11 2019 -0800

    Fix unittest
---
 .../src/test/java/org/apache/pulsar/functions/utils/ActionsTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/pulsar-functions/utils/src/test/java/org/apache/pulsar/functions/utils/ActionsTest.java
 
b/pulsar-functions/utils/src/test/java/org/apache/pulsar/functions/utils/ActionsTest.java
index d665178..309e466 100644
--- 
a/pulsar-functions/utils/src/test/java/org/apache/pulsar/functions/utils/ActionsTest.java
+++ 
b/pulsar-functions/utils/src/test/java/org/apache/pulsar/functions/utils/ActionsTest.java
@@ -155,7 +155,7 @@ public class ActionsTest {
         actions.run();
 
         assertEquals(actions.numActions(), 2);
-        verify(supplier1, times(10)).get();
+        verify(supplier1, times(11)).get();
         verify(onFail, times(1)).accept(any());
         verify(onSucess, times(0)).accept(any());
         verify(supplier2, times(1)).get();

Reply via email to