tests: Free test at the end of GetDeviceAliases JSON test

Commit 58b147ad07 added a test for
qemuMonitorGetDeviceAliases but forgot to free the test object at the
end which causes all sort of weird errors and failures when new tests
are added after the GetDeviceAliases.
This commit is contained in:
Jiri Denemark 2013-07-22 14:56:21 +02:00
parent ada5f9ceb8
commit c9150d3747

View File

@ -938,6 +938,7 @@ testQemuMonitorJSONGetDeviceAliases(const void *data)
cleanup:
virStringFreeList(aliases);
qemuMonitorTestFree(test);
return ret;
}