We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6180c86 commit 1952847Copy full SHA for 1952847
zeppelin-zengine/src/test/java/org/apache/zeppelin/search/SearchServiceTest.java
@@ -65,11 +65,13 @@ public void startUp() {
65
66
@Test //(expected=IllegalStateException.class)
67
public void canNotSearchBeforeIndexing() {
68
- //given no notebookIndex.index() was made
+ //given NO notebookIndex.index() was called
69
//when
70
List<Map<String, String>> result = notebookIndex.search("anything");
71
//then
72
assertThat(result).isEmpty();
73
+ //assert logs were printed
74
+ //"ERROR org.apache.zeppelin.search.SearchService:97 - Failed to open index dir RAMDirectory"
75
}
76
77
@Test public void canIndexAndReIndex() throws IOException {
0 commit comments