aboutsummaryrefslogtreecommitdiff
path: root/src/di_container/asynchronous/binding/when_configurator.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-08-01 17:56:49 +0200
committerHampusM <hampus@hampusmat.com>2023-08-01 17:56:49 +0200
commitf7975f33978142461e67f5ebb2e478aa89c42d21 (patch)
tree6aba0b9396563e59bf7a5140d934ffa81924fe0a /src/di_container/asynchronous/binding/when_configurator.rs
parent29df52ee4521b644ea50ce8da65032158ccb23a4 (diff)
test: clean up binding configurator unit tests
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());
}
}