aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/plugin/plugin_installer_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/plugin/plugin_installer_test.rs')
-rw-r--r--crates/shirabe/tests/plugin/plugin_installer_test.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/tests/plugin/plugin_installer_test.rs b/crates/shirabe/tests/plugin/plugin_installer_test.rs
index e3f89851..5dfb6e06 100644
--- a/crates/shirabe/tests/plugin/plugin_installer_test.rs
+++ b/crates/shirabe/tests/plugin/plugin_installer_test.rs
@@ -173,7 +173,7 @@ impl InstallationManagerInterface for MockInstallationManager {
fn ensure_binaries_presence(&mut self, _package: PackageInterfaceHandle) {}
fn execute(
- &mut self,
+ &self,
_repo: &InstalledRepositoryInterfaceHandle,
_operations: Vec<AnyOperation>,
_dev_mode: bool,
@@ -372,7 +372,7 @@ fn plugin_property(
) -> String {
let plugin = plugin.borrow();
let proxy = plugin
- .as_php_plugin_proxy()
+ .__as_php_plugin_proxy()
.expect("registered plugins are PHP-backed proxies");
match proxy.__get_property(name).unwrap() {
PhpMixed::String(s) => s,