Skip to content

Commit 7b3492f

Browse files
committed
Fix style
1 parent 34bd28e commit 7b3492f

File tree

1 file changed

+1
-8
lines changed
  • graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test

1 file changed

+1
-8
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/PythonTests.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,7 @@ public static Context enterContext(Map<String, String> options, String[] args) {
112112
PythonTests.outArray.reset();
113113
PythonTests.errArray.reset();
114114
Context prevContext = context;
115-
context = Context.newBuilder() //
116-
.engine(engine) //
117-
.allowExperimentalOptions(true) //
118-
.allowAllAccess(true) //
119-
.options(options) //
120-
.arguments("python", args) //
121-
.option("python.Executable", executable) //
122-
.build();
115+
context = Context.newBuilder().engine(engine).allowExperimentalOptions(true).allowAllAccess(true).options(options).arguments("python", args).option("python.Executable", executable).build();
123116
context.initialize("python");
124117
assert prevContext == null;
125118
context.enter();

0 commit comments

Comments
 (0)