aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2022-04-30 21:01:04 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2022-04-30 21:01:04 +0200
commit694c13fe8679ffeb44266805c9b6ea9f0dd5b1ca (patch)
tree92f6202d4389240610130e744182c1d05d414a49 /tests
parent8bd16c32f3bbe724321127fcaaf798a1928cf0fe (diff)
parent41a18f078dc6044df484cc79f2ebcc25e81fddf4 (diff)
Merge branch 'master' into pr/1726
Diffstat (limited to 'tests')
-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 07cbc1779..c8b02b635 100644
--- a/tests/core/encoding/xml/test_core_xml.odin
+++ b/tests/core/encoding/xml/test_core_xml.odin
@@ -295,7 +295,7 @@ run_tests :: proc(t: ^testing.T) {
path := test_file_path(test.filename)
log(t, fmt.tprintf("Trying to parse %v", path))
- doc, err := xml.parse(path, test.options, Silent)
+ doc, err := xml.load_from_file(path, test.options, Silent)
defer xml.destroy(doc)
tree_string := doc_to_string(doc)