You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2019/10/22 16:00:12 UTC

[karaf] branch karaf-4.2.x updated: Fix the timeout on EquinoxTest itest

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

jbonofre pushed a commit to branch karaf-4.2.x
in repository https://gitbox.apache.org/repos/asf/karaf.git


The following commit(s) were added to refs/heads/karaf-4.2.x by this push:
     new 2cd8eb7  Fix the timeout on EquinoxTest itest
2cd8eb7 is described below

commit 2cd8eb7ebb026f07930a087bcf5f34217262de64
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Tue Oct 22 17:59:31 2019 +0200

    Fix the timeout on EquinoxTest itest
---
 itests/test/src/test/java/org/apache/karaf/itests/EquinoxTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/itests/test/src/test/java/org/apache/karaf/itests/EquinoxTest.java b/itests/test/src/test/java/org/apache/karaf/itests/EquinoxTest.java
index c0f14ea..31e6f2b 100644
--- a/itests/test/src/test/java/org/apache/karaf/itests/EquinoxTest.java
+++ b/itests/test/src/test/java/org/apache/karaf/itests/EquinoxTest.java
@@ -42,7 +42,7 @@ public class EquinoxTest extends BaseTest {
 
     @Test
     public void simpleTest() throws Exception {
-        assertContains("org.eclipse.osgi", executeCommand("info"));
+        assertContains("org.eclipse.osgi", executeCommand("shell:info", 36000L, false));
     }
 
 }