aboutsummaryrefslogtreecommitdiff
path: root/tests/core/encoding/xml
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-07-11 11:55:49 +0100
committergingerBill <bill@gingerbill.org>2022-07-11 11:55:49 +0100
commitae9d540c1c77bfc84a4fff964e218aebcb0c2680 (patch)
tree7a80557e7727441c7b6a3ee12548c5b459289778 /tests/core/encoding/xml
parentc90b7c38f1a54e1f6bc144bea76b976f7c126644 (diff)
Correct naming in tests
Diffstat (limited to 'tests/core/encoding/xml')
-rw-r--r--tests/core/encoding/xml/test_core_xml.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/encoding/xml/test_core_xml.odin b/tests/core/encoding/xml/test_core_xml.odin
index a17594b7e..3cfc75a65 100644
--- a/tests/core/encoding/xml/test_core_xml.odin
+++ b/tests/core/encoding/xml/test_core_xml.odin
@@ -281,7 +281,7 @@ doc_to_string :: proc(doc: ^xml.Document) -> (result: string) {
}
buf: strings.Builder
- defer strings.destroy_builder(&buf)
+ defer strings.builder_destroy(&buf)
print(strings.to_writer(&buf), doc)
return strings.clone(strings.to_string(buf))