summaryrefslogtreecommitdiff
path: root/test/core/error-mapping.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2021-03-26 12:21:45 +0000
committerSimon McVittie <smcv@collabora.com>2021-03-26 12:22:14 +0000
commita23a0a2e65329ee93e960c36ec2aec603fb8fd90 (patch)
tree57d04256496dd08f1e94b4b6674688155ac353ff /test/core/error-mapping.c
parent344e005c7cdf86755f8c014bb87e2bd8123c5116 (diff)
downloaddbus-glib-a23a0a2e65329ee93e960c36ec2aec603fb8fd90.tar.gz
test: Replace remaining assertions with g_assert_true()
Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'test/core/error-mapping.c')
-rw-r--r--test/core/error-mapping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/error-mapping.c b/test/core/error-mapping.c
index 764275f..58306b4 100644
--- a/test/core/error-mapping.c
+++ b/test/core/error-mapping.c
@@ -91,7 +91,7 @@ setup (Fixture *f,
g_assert_nonnull (f->conn);
f->object = g_object_new (MY_TYPE_OBJECT, NULL);
- g_assert (MY_IS_OBJECT (f->object));
+ g_assert_true (MY_IS_OBJECT (f->object));
dbus_g_connection_register_g_object (f->conn, "/com/example/Test/Object",
f->object);