Explorar o código

Fixed compile error in sexec.transformation.test

Andreas Mülder %!s(int64=14) %!d(string=hai) anos
pai
achega
f583f769ea

+ 1 - 1
test-plugins/org.yakindu.sct.model.sexec.test/src/org/yakindu/sct/model/sexec/transformation/test/SCTTestUtil.java

@@ -120,7 +120,7 @@ public class SCTTestUtil {
 	public static Region _createRegion(String name, State state) {
 		Region region = SGraphFactory.eINSTANCE.createRegion();
 		region.setName(name);
-		if (state != null ) state.getSubRegions().add(region);
+		if (state != null ) state.getRegions().add(region);
 		return region;
 	}