]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
tests: Drop superfluous GLIB_2_56 preprocessing
authorRico Tzschichholz <ricotz@ubuntu.com>
Sat, 18 Mar 2023 11:40:55 +0000 (12:40 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Sat, 18 Mar 2023 11:40:55 +0000 (12:40 +0100)
tests/objects/plugin-module-init.vala

index cc13e8a07577bb0bf877b7dfe2f52d8c147335ff..9599911879a9899213c723c929e97eaf9e0c84e7 100644 (file)
@@ -8,10 +8,7 @@ public GLib.Type init_plugin (TypeModule? m) {
 }
 
 void main () {
-// https://bugzilla.gnome.org/show_bug.cgi?id=684282
-#if GLIB_2_56
        var o = GLib.Object.new (init_plugin (null));
        assert (o is TypeModule);
        assert (o is Module);
-#endif
 }