mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove test with unused ZeppelinContext load() method
This commit is contained in:
parent
37005c5a80
commit
1b6a8186e0
1 changed files with 0 additions and 10 deletions
|
|
@ -172,16 +172,6 @@ public class SparkInterpreterTest {
|
|||
assertEquals(Code.ERROR, result.code());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testZContextDependencyLoading() {
|
||||
// try to import library does not exist on classpath. it'll fail
|
||||
assertEquals(InterpreterResult.Code.ERROR, repl.interpret("import org.apache.commons.csv.CSVFormat", context).code());
|
||||
|
||||
// load library from maven repository and try to import again
|
||||
repl.interpret("z.load(\"org.apache.commons:commons-csv:1.1\")", context);
|
||||
assertEquals(InterpreterResult.Code.SUCCESS, repl.interpret("import org.apache.commons.csv.CSVFormat", context).code());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void emptyConfigurationVariablesOnlyForNonSparkProperties() {
|
||||
Properties intpProperty = repl.getProperty();
|
||||
|
|
|
|||
Loading…
Reference in a new issue