mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
Rename virtTestDifference to virTestDifference.
This function doesn't follow our convention of naming functions.
This commit is contained in:
committed by
John Ferlan
parent
cd7dd1508d
commit
062ea148a0
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user