diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2023-12-11 16:37:35 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2023-12-15 09:45:08 +0100 |
| commit | 8a053ab50624892dbefcb6cd386aee650651a48b (patch) | |
| tree | cfc78253895980bfe403c05087a8e5cb1620be6c /test/test-runner/src/sys.rs | |
| parent | 8686fc2792906c8e5cb0dcc49845efd7690f98fa (diff) | |
| download | mullvadvpn-8a053ab50624892dbefcb6cd386aee650651a48b.tar.xz mullvadvpn-8a053ab50624892dbefcb6cd386aee650651a48b.zip | |
[Clippy] Fix unused `async`
Diffstat (limited to 'test/test-runner/src/sys.rs')
| -rw-r--r-- | test/test-runner/src/sys.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test-runner/src/sys.rs b/test/test-runner/src/sys.rs index 7363e38e72..ecc767d398 100644 --- a/test/test-runner/src/sys.rs +++ b/test/test-runner/src/sys.rs @@ -379,6 +379,7 @@ pub async fn set_daemon_log_level(verbosity_level: Verbosity) -> Result<(), test } #[cfg(target_os = "macos")] +#[allow(clippy::unused_async)] pub async fn set_daemon_log_level(_verbosity_level: Verbosity) -> Result<(), test_rpc::Error> { // TODO: Not implemented log::warn!("Setting log level is not implemented on macOS"); |
