Skip to content

Commit 463009b

Browse files
committed
MemMoveNodeTests runs with python.NativeModules=false
1 parent 3e57267 commit 463009b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/nodes/MemMoveNodeTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,15 @@
5757
import org.junit.Before;
5858
import org.junit.Test;
5959

60+
import java.util.Map;
61+
6062
public class MemMoveNodeTests {
6163

6264
private GilNode.UncachedAcquire gil;
6365

6466
@Before
6567
public void setUp() {
66-
PythonTests.enterContext();
68+
PythonTests.enterContext(Map.of("python.NativeModules", "false"), new String[0]);
6769
this.gil = GilNode.uncachedAcquire();
6870
CApiContext.ensureCapiWasLoaded("internal");
6971
}

0 commit comments

Comments
 (0)