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 15:59:50 UTC

[karaf] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/karaf.git


The following commit(s) were added to refs/heads/master by this push:
     new 816273e  Fix the timeout on EquinoxTest itest
816273e is described below

commit 816273e2cd6fdc5d8cfacdc0dd86e994974c2ec9
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));
     }
 
 }