diff options
author | Markus Armbruster <armbru@redhat.com> | 2019-12-04 10:36:25 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-12-18 08:36:16 +0100 |
commit | 0cf9e2b4f8e85477fbb50c9beb030aaf400d581a (patch) | |
tree | b14a95476f6849d7d1ef2d270aab4cad3a1e2cd2 /tests/test-blockjob.c | |
parent | d402c98396b69d088d33070794893f7de254cbab (diff) |
tests-blockjob: Use error_free_or_abort()
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20191204093625.14836-19-armbru@redhat.com>
Diffstat (limited to 'tests/test-blockjob.c')
-rw-r--r-- | tests/test-blockjob.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test-blockjob.c b/tests/test-blockjob.c index e670a20617..4eeb184caf 100644 --- a/tests/test-blockjob.c +++ b/tests/test-blockjob.c @@ -48,9 +48,8 @@ static BlockJob *mk_job(BlockBackend *blk, const char *id, g_assert_cmpstr(job->job.id, ==, blk_name(blk)); } } else { - g_assert_nonnull(err); + error_free_or_abort(&err); g_assert_null(job); - error_free(err); } return job; |