mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 06:18:39 +00:00
Corrected CRC's
CRC's were correct in relation to changes to address comments containing -- at the end.
This commit is contained in:
@@ -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))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user