Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clippy #805

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions plane/plane-tests/tests/forward_auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ async fn forward_auth_rejects(env: TestEnvironment) {
.await;
let client = controller.client();

let task = tokio::spawn(async move {
let a = client.status().await;
a
});
let task = tokio::spawn(async move { client.status().await });

let mut req = mock_auth_server.expect().await.unwrap();
req.reject();
Expand All @@ -37,10 +34,7 @@ async fn forward_auth_accepts(env: TestEnvironment) {
.await;
let client = controller.client();

let task = tokio::spawn(async move {
let a = client.status().await;
a
});
let task = tokio::spawn(async move { client.status().await });

let mut req = mock_auth_server.expect().await.unwrap();
req.accept();
Expand Down
Loading