gplugin/gplugin

3d39f1bb66af
Parents bd2b842909ed
Children 7149b8887b13
Remove the shutdown parameter from the vapi tests.

This was something I was working on on another branch and some how snuck in and made it past review.

Testing Done:
Verified the tests pass on linux-arm64

Reviewed at https://reviews.imfreedom.org/r/897/
--- a/vala/tests/genie-plugins/basic.gs Wed Aug 11 23:28:30 2021 -0500
+++ b/vala/tests/genie-plugins/basic.gs Thu Aug 12 00:43:06 2021 -0500
@@ -47,7 +47,7 @@
return true
-def gplugin_unload(plugin : GPlugin.Plugin, shutdown : bool, out error : Error) : bool
+def gplugin_unload(plugin : GPlugin.Plugin, out error : Error) : bool
if not(plugin isa GPlugin.Plugin)
error = new Error(Quark.from_string("gplugin"), 0, "plugin was not set")
return false
--- a/vala/tests/plugins/basic.vala Wed Aug 11 23:28:30 2021 -0500
+++ b/vala/tests/plugins/basic.vala Thu Aug 12 00:43:06 2021 -0500
@@ -52,7 +52,7 @@
return true;
}
-public bool gplugin_unload(GPlugin.Plugin plugin, bool shutdown, out Error error) {
+public bool gplugin_unload(GPlugin.Plugin plugin, out Error error) {
if(!(plugin is GPlugin.Plugin)) {
error = new Error(Quark.from_string("gplugin"), 0, "plugin as not set");
return false;