aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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)