Corrected CRC's

CRC's were correct in relation to changes to address comments containing
-- at the end.
This commit is contained in:
StudebakerGuy
2026-01-08 11:34:50 -05:00
parent 14d6371058
commit fb479b3aae

View File

@@ -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))
}
}