diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-28 00:31:54 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 12:42:25 +0100 |
| commit | 1cbd60f40e974eead2b46bc5fdd732c6357dfdfb (patch) | |
| tree | 12bef0bd831177b7d8addff3433c9c3bdb9ccad1 /tests/core/encoding | |
| parent | 304f22c8af635124357c5f62772f6f09676aa761 (diff) | |
Reenable `core:encoding/ini` tests
Diffstat (limited to 'tests/core/encoding')
| -rw-r--r-- | tests/core/encoding/ini/test_core_ini.odin | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/core/encoding/ini/test_core_ini.odin b/tests/core/encoding/ini/test_core_ini.odin index 6e6c8152e..8c554c6b5 100644 --- a/tests/core/encoding/ini/test_core_ini.odin +++ b/tests/core/encoding/ini/test_core_ini.odin @@ -1,8 +1,7 @@ +#+feature dynamic-literals package test_core_ini -import "base:runtime" import "core:encoding/ini" -import "core:mem/virtual" import "core:strings" import "core:testing" @@ -64,7 +63,7 @@ ini_to_string :: proc(t: ^testing.T) { testing.expectf( t, - strings.contains(str, "[LEVEL]LOG = debug"), + strings.contains(str, "[LEVEL]\nLOG = debug"), "Expected `ini.save_map_to_string` to return a string equal to \"[LEVEL]LOG = debug\", got %v", str, ) |