You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/06/30 09:02:52 UTC

[zeppelin] branch master updated: [hotfix] Fix InterpreterIT#testShowDescriptionOnInterpreterCreate due to ZEPPELIN-4927

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

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f3ea39  [hotfix] Fix InterpreterIT#testShowDescriptionOnInterpreterCreate due to ZEPPELIN-4927
6f3ea39 is described below

commit 6f3ea39d845030e6155342e3710f74198d34a1cd
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Tue Jun 30 14:15:16 2020 +0800

    [hotfix] Fix InterpreterIT#testShowDescriptionOnInterpreterCreate due to ZEPPELIN-4927
---
 .../src/test/java/org/apache/zeppelin/integration/InterpreterIT.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zeppelin-integration/src/test/java/org/apache/zeppelin/integration/InterpreterIT.java b/zeppelin-integration/src/test/java/org/apache/zeppelin/integration/InterpreterIT.java
index d2e31a0..bdf7811 100644
--- a/zeppelin-integration/src/test/java/org/apache/zeppelin/integration/InterpreterIT.java
+++ b/zeppelin-integration/src/test/java/org/apache/zeppelin/integration/InterpreterIT.java
@@ -63,7 +63,7 @@ public class InterpreterIT extends AbstractZeppelinIT {
       select.selectByVisibleText("spark");
 
       collector.checkThat("description of interpreter property is displayed",
-          driver.findElement(By.xpath("//tr/td[contains(text(), 'spark.app.name')]/following-sibling::td[3]")).getText(),
+          driver.findElement(By.xpath("//tr/td[contains(text(), 'spark.app.name')]/following-sibling::td[2]")).getText(),
           CoreMatchers.equalTo("The name of spark application."));
 
     } catch (Exception e) {