Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room b/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room
index 2d3cd1549..1d93fdd65 100644
--- a/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room
+++ b/tests/org.eclipse.etrice.generator.common.tests/models/ConfigTest.room
@@ -128,16 +128,16 @@ RoomModel ConfigTest {
Attribute float_c: float64 = "22.22"
Attribute float_i: float64 = "33.33"
- Attribute char_r: char = "'R'"
- Attribute char_c: char = "'C'"
- Attribute char_i: char = "'I'"
+ Attribute char_r: char = "R"
+ Attribute char_c: char = "C"
+ Attribute char_i: char = "I"
- Attribute charArray_r[20] : char = "\"ROOM will bloom\".toCharArray()"
+ Attribute charArray_r[20] : char = "ROOM will bloom"
Attribute charArray_c [ 20 ]: char = "ROOM Zoom"
Attribute charArray_i [ 20 ]: char = "ROOM Boom"
- Attribute string_r : string = "\":/\""
- Attribute string_c : string = "\":)\""
- Attribute string_i : string = "\":]\""
+ Attribute string_r : string = ":/"
+ Attribute string_c : string = ":)"
+ Attribute string_i : string = ":]"
Attribute array1_r [ 1 ]: int32 = "0"
Attribute array1_c [ 1 ]: int32 = "0"
Attribute array1_i [ 1 ]: int32 = "0"

Back to the top