summaryrefslogtreecommitdiff
path: root/tests/vboxsnapshotxmltest.c
diff options
context:
space:
mode:
authorTomáš Ryšavý <tom.rysavy.0@gmail.com>2016-05-26 17:01:52 +0200
committerJohn Ferlan <jferlan@redhat.com>2016-06-08 11:23:12 -0400
commit401bb813bd0bdd9dfa8271f5941dd92a6127abd9 (patch)
treee1da409f4884810306db95efae5cc43ff41761b0 /tests/vboxsnapshotxmltest.c
parent062ea148a0d13e192f693baf45b007c3883f5432 (diff)
downloadlibvirt-401bb813bd0bdd9dfa8271f5941dd92a6127abd9.tar.gz
Rename virtTestLoadFile to virTestLoadFile.
This function doesn't follow our convention of naming functions.
Diffstat (limited to 'tests/vboxsnapshotxmltest.c')
-rw-r--r--tests/vboxsnapshotxmltest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vboxsnapshotxmltest.c b/tests/vboxsnapshotxmltest.c
index 5e040bdf3b..fa7bbfe4a3 100644
--- a/tests/vboxsnapshotxmltest.c
+++ b/tests/vboxsnapshotxmltest.c
@@ -67,7 +67,7 @@ testCompareXMLtoXMLFiles(const char *xml)
if (virFileMakePath(abs_builddir "/vboxsnapshotxmldata") < 0)
goto cleanup;
- if (virtTestLoadFile(xml, &xmlData) < 0)
+ if (virTestLoadFile(xml, &xmlData) < 0)
goto cleanup;
if (!(machine = virVBoxSnapshotConfLoadVboxFile(xml, (char*)"")))
@@ -76,7 +76,7 @@ testCompareXMLtoXMLFiles(const char *xml)
if (virVBoxSnapshotConfSaveVboxFile(machine, pathResult) < 0)
goto cleanup;
- if (virtTestLoadFile(pathResult, &actual) < 0)
+ if (virTestLoadFile(pathResult, &actual) < 0)
goto cleanup;
if (!(actual = testFilterXML(actual)))