summaryrefslogtreecommitdiffstats
path: root/crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs')
-rw-r--r--crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs b/crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs
index ae493103..0fe9dbef 100644
--- a/crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs
+++ b/crates/core/tedge_core/tests/plugin_panics_in_msg_handler.rs
@@ -113,7 +113,7 @@ fn test_handler_panic() -> Result<(), Box<(dyn std::error::Error + 'static)>> {
};
let (cancel_sender, application) = TedgeApplication::builder()
- .with_plugin_builder(HandlePanicPluginBuilder {})?
+ .with_plugin_builder(HandlePanicPluginBuilder {})
.with_config_from_path(config_file_path)
.await?;