diff options
| author | StudebakerGuy <> | 2026-01-08 11:34:50 -0500 |
|---|---|---|
| committer | StudebakerGuy <> | 2026-01-08 11:34:50 -0500 |
| commit | fb479b3aaec5a9a715bcff7d65498ba18020f4f0 (patch) | |
| tree | e36e7c18d49580ffd54607d4b5df50548424cd01 | |
| parent | 14d63710586ef6ca0096c170cb758ce5ae1fe6c1 (diff) | |
Corrected CRC's
CRC's were correct in relation to changes to address comments containing
-- at the end.
| -rw-r--r-- | tests/core/encoding/xml/test_core_xml.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/core/encoding/xml/test_core_xml.odin b/tests/core/encoding/xml/test_core_xml.odin index 409a8c9c0..23d583e98 100644 --- a/tests/core/encoding/xml/test_core_xml.odin +++ b/tests/core/encoding/xml/test_core_xml.odin @@ -114,7 +114,7 @@ xml_test_entities :: proc(t: ^testing.T) { }, expected_doctype = "html", }, - crc32 = 0x48f41216, + crc32 = 0x98791215, }) } @@ -128,7 +128,7 @@ xml_test_entities_unbox :: proc(t: ^testing.T) { }, expected_doctype = "html", }, - crc32 = 0xd0567818, + crc32 = 0x5fd5ab4e, }) } @@ -142,7 +142,7 @@ xml_test_entities_unbox_decode :: proc(t: ^testing.T) { }, expected_doctype = "html", }, - crc32 = 0x68d2571e, + crc32 = 0x3c0973e2, }) } @@ -298,4 +298,4 @@ doc_to_string :: proc(doc: ^xml.Document) -> (result: string) { print(strings.to_writer(&buf), doc) return strings.clone(strings.to_string(buf)) -}
\ No newline at end of file +} |