This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch branch-0.9 in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.9 by this push: new f5ee0eb [hotfix] Fix InterpreterIT#testShowDescriptionOnInterpreterCreate due to ZEPPELIN-4927 f5ee0eb is described below commit f5ee0eb9130f707a68a057132e4df272b39fc271 Author: Jeff Zhang <zjf...@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) {