Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.dflib.jjava.distro;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
Expand All @@ -12,7 +11,6 @@ public class KernelExecutionIT extends ContainerizedKernelCase {
* scenario passes even with the bug present.
*/
@Test
@Disabled
public void variableSurvivesLaterImports() throws Exception {
KernelRun run = executeInKernel(
"%maven com.fasterxml.jackson.core:jackson-databind:2.21.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public Object eval(JShell shell, String code) {

protected Object evalSingle(JShell shell, String code) {

List<SnippetEvent> events = shell.eval(code);
List<SnippetEvent> events = shell.eval(code.strip());

Object result = null;

Expand Down
Loading