From 2d0f930e6aecc0562b90f35de5d6136bbe3f3e8e Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 21 Aug 2025 09:14:06 -0500 Subject: [PATCH] gtk-ng: properly skip Zig test --- src/apprt/gtk-ng/ext/actions.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/gtk-ng/ext/actions.zig b/src/apprt/gtk-ng/ext/actions.zig index 9f724c850..7d13af961 100644 --- a/src/apprt/gtk-ng/ext/actions.zig +++ b/src/apprt/gtk-ng/ext/actions.zig @@ -103,7 +103,7 @@ pub fn addAsGroup(comptime T: type, self: *T, comptime name: [:0]const u8, actio test "adding actions to an object" { // This test requires a connection to an active display environment. - if (gtk.initCheck() == 0) return; + if (gtk.initCheck() == 0) return error.SkipZigTest; const callbacks = struct { fn callback(_: *gio.SimpleAction, variant_: ?*glib.Variant, self: *gtk.Box) callconv(.c) void {