aboutsummaryrefslogtreecommitdiff
path: root/tests/core/sys/windows/util.odin
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/sys/windows/util.odin')
-rw-r--r--tests/core/sys/windows/util.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/sys/windows/util.odin b/tests/core/sys/windows/util.odin
index 0201395f6..6e4bef9b7 100644
--- a/tests/core/sys/windows/util.odin
+++ b/tests/core/sys/windows/util.odin
@@ -12,11 +12,11 @@ UTF16_Vector :: struct {
utf16_vectors := []UTF16_Vector{
{
- intrinsics.constant_utf16_cstring("Hellope, World!"),
+ "Hellope, World!",
"Hellope, World!",
},
{
- intrinsics.constant_utf16_cstring("Hellope\x00, World!"),
+ "Hellope\x00, World!",
"Hellope",
},
}