Skip to content

Commit 9233d39

Browse files
msimacektimfel
authored andcommitted
Fix ConversionNodeTests
1 parent 5fea4bf commit 9233d39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/builtins/modules/ConversionNodeTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
import com.oracle.graal.python.builtins.objects.function.Signature;
5050
import com.oracle.graal.python.nodes.PRootNode;
5151
import com.oracle.graal.python.nodes.call.CallTargetInvokeNode;
52-
import com.oracle.graal.python.nodes.function.builtins.clinic.ArgumentCastNode.ArgumentCastNodeWithRaise;
52+
import com.oracle.graal.python.nodes.function.builtins.clinic.ArgumentCastNode;
5353
import com.oracle.graal.python.runtime.ExecutionContext.CalleeContext;
5454
import com.oracle.graal.python.runtime.ExecutionContext.IndirectCalleeContext;
5555
import com.oracle.graal.python.runtime.GilNode;
@@ -65,13 +65,13 @@ public class ConversionNodeTests {
6565
static final Signature SIGNATURE = new Signature(-1, false, -1, false, new String[]{"arg"}, null);
6666
@Rule public ExpectedException expectedException = ExpectedException.none();
6767

68-
protected static Object call(Object arg, ArgumentCastNodeWithRaise castNode) {
68+
protected static Object call(Object arg, ArgumentCastNode castNode) {
6969
PythonLanguage language = PythonLanguage.get(castNode);
7070
final PythonContext pythonContext = PythonContext.get(castNode);
7171

7272
RootCallTarget callTarget = Truffle.getRuntime().createCallTarget(new PRootNode(language) {
7373
@Child private CalleeContext calleeContext = CalleeContext.create();
74-
@Child private ArgumentCastNodeWithRaise node = castNode;
74+
@Child private ArgumentCastNode node = castNode;
7575

7676
@Override
7777
public Object execute(VirtualFrame frame) {

0 commit comments

Comments
 (0)