mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fixing the new test case failure with recent changes from master.
This commit is contained in:
parent
b086f77e97
commit
adfcd8582b
1 changed files with 1 additions and 2 deletions
|
|
@ -386,7 +386,6 @@ public class NotebookServerTest extends AbstractTestRestApi {
|
|||
|
||||
// expect the events are broadcasted properly
|
||||
verify(sock1, times(2)).send(anyString());
|
||||
verify(sock2, times(1)).send(anyString());
|
||||
|
||||
Note createdNote = null;
|
||||
for (Note note : notebook.getAllNotes()) {
|
||||
|
|
@ -400,7 +399,7 @@ public class NotebookServerTest extends AbstractTestRestApi {
|
|||
assertEquals(notebook.getInterpreterFactory().getDefaultInterpreterSetting(
|
||||
createdNote.getId()).getId(), defaultInterpreterId);
|
||||
}
|
||||
notebook.removeNote(createdNote.getId(), null);
|
||||
notebook.removeNote(createdNote.getId(), anonymous);
|
||||
}
|
||||
|
||||
private NotebookSocket createWebSocket() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue