Skip to content

Commit b43bfda

Browse files
Merge pull request #112 from FrankSchnicke/fix-operation-valuetype
Fixes operation variable valuetype in process engine test
2 parents 50e4853 + f2d97aa commit b43bfda

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)