aboutsummaryrefslogtreecommitdiff
path: root/src/di_container/asynchronous/binding/when_configurator.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/di_container/asynchronous/binding/when_configurator.rs')
-rw-r--r--src/di_container/asynchronous/binding/when_configurator.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/di_container/asynchronous/binding/when_configurator.rs b/src/di_container/asynchronous/binding/when_configurator.rs
index fb14bd4..c1bb8c5 100644
--- a/src/di_container/asynchronous/binding/when_configurator.rs
+++ b/src/di_container/asynchronous/binding/when_configurator.rs
@@ -103,9 +103,9 @@ mod tests
mocks::MockDependencyHistory,
>::new(Arc::new(di_container_mock));
- assert!(matches!(
- binding_when_configurator.when_named("awesome").await,
- Ok(_)
- ));
+ assert!(binding_when_configurator
+ .when_named("awesome")
+ .await
+ .is_ok());
}
}