diff options
| author | Joakim Hulthe <joakim@hulthe.net> | 2024-03-04 16:26:25 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2024-03-12 13:12:17 +0100 |
| commit | ab3cbe847d900c7079800d0c01c34b419447e366 (patch) | |
| tree | 79767e998a28f0c8ed6eaaae002544d03c982aa7 /test/test-manager/src | |
| parent | c9b0230d3780ef7944c257438eb749e32be6be62 (diff) | |
| download | mullvadvpn-ab3cbe847d900c7079800d0c01c34b419447e366.tar.xz mullvadvpn-ab3cbe847d900c7079800d0c01c34b419447e366.zip | |
Update test-manager dep `inventory`
Diffstat (limited to 'test/test-manager/src')
| -rw-r--r-- | test/test-manager/src/tests/mod.rs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/test/test-manager/src/tests/mod.rs b/test/test-manager/src/tests/mod.rs index b104dbe9e8..0cf1357696 100644 --- a/test/test-manager/src/tests/mod.rs +++ b/test/test-manager/src/tests/mod.rs @@ -28,13 +28,11 @@ pub struct TestContext { pub rpc_provider: RpcClientProvider, } -pub type TestWrapperFunction = Box< - dyn Fn( - TestContext, - ServiceClient, - Box<dyn std::any::Any + Send>, - ) -> BoxFuture<'static, Result<(), Error>>, ->; +pub type TestWrapperFunction = fn( + TestContext, + ServiceClient, + Box<dyn std::any::Any + Send>, +) -> BoxFuture<'static, Result<(), Error>>; #[derive(thiserror::Error, Debug)] pub enum Error { |
