Skip to content

Commit f2d97aa

Browse files
authored
Fixes operation variable valuetype in process engine test
1 parent 50e4853 commit f2d97aa

File tree

1 file changed

+1
-1
lines changed
  • basyx.components/basyx.components.lib/src/test/java/org/eclipse/basyx/regression/support/processengine/submodel

1 file changed

+1
-1
lines changed

basyx.components/basyx.components.lib/src/test/java/org/eclipse/basyx/regression/support/processengine/submodel/DeviceSubmodelFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public Submodel create(String id, ICoilcar coilcar) {
6262
return true;
6363
});
6464
op2.setInputVariables(Collections.singletonList(new OperationVariable(new Property("position", 0))));
65-
op2.setOutputVariables(Collections.singletonList(new OperationVariable(new Property("result", 0))));
65+
op2.setOutputVariables(Collections.singletonList(new OperationVariable(new Property("result", false))));
6666
op2.setIdShort("moveTo");
6767

6868
// create a list for defined operations

0 commit comments

Comments
 (0)