summaryrefslogtreecommitdiffstats
path: root/tests/core/io/test_marshalls.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/io/test_marshalls.h')
-rw-r--r--tests/core/io/test_marshalls.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/core/io/test_marshalls.h b/tests/core/io/test_marshalls.h
index de8d6e1406..a37bcea71d 100644
--- a/tests/core/io/test_marshalls.h
+++ b/tests/core/io/test_marshalls.h
@@ -141,13 +141,13 @@ TEST_CASE("[Marshalls] Floating point double precision decoding") {
}
TEST_CASE("[Marshalls] C string encoding") {
- char cstring[] = "Godot"; // 5 characters
+ char cstring[] = "Redot"; // 5 characters
uint8_t data[6];
int actual_size = encode_cstring(cstring, data);
CHECK(actual_size == 6);
- CHECK(data[0] == 'G');
- CHECK(data[1] == 'o');
+ CHECK(data[0] == 'R');
+ CHECK(data[1] == 'e');
CHECK(data[2] == 'd');
CHECK(data[3] == 'o');
CHECK(data[4] == 't');