Rename virtTestDifference to virTestDifference.

This function doesn't follow our convention of naming functions.
This commit is contained in:
Tomáš Ryšavý
2016-05-26 17:01:51 +02:00
committed by John Ferlan
parent cd7dd1508d
commit 062ea148a0
18 changed files with 57 additions and 57 deletions

View File

@@ -105,7 +105,7 @@ testJSONAddRemove(const void *data)
goto cleanup;
}
if (STRNEQ(info->expect, result)) {
virtTestDifference(stderr, info->expect, result);
virTestDifference(stderr, info->expect, result);
goto cleanup;
}
ret = 0;
@@ -270,7 +270,7 @@ testJSONCopy(const void *data)
if (STRNEQ(result, resultCopy)) {
if (virTestGetVerbose())
virtTestDifference(stderr, result, resultCopy);
virTestDifference(stderr, result, resultCopy);
ret = -1;
goto cleanup;
}
@@ -296,7 +296,7 @@ testJSONCopy(const void *data)
if (STRNEQ(result, resultCopy)) {
if (virTestGetVerbose())
virtTestDifference(stderr, result, resultCopy);
virTestDifference(stderr, result, resultCopy);
ret = -1;
goto cleanup;
}