Skip to content

Commit c264c89

Browse files
committed
Merge branch 'master' into dependabot/npm_and_yarn/juniper/graphiql-4.1.2
2 parents b813d7a + a707c6c commit c264c89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

juniper_actix/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ mod subscription_tests {
841841
fn run(
842842
&self,
843843
messages: Vec<WsIntegrationMessage>,
844-
) -> LocalBoxFuture<Result<(), anyhow::Error>> {
844+
) -> LocalBoxFuture<'_, Result<(), anyhow::Error>> {
845845
Box::pin(self.run_async(messages))
846846
}
847847
}

juniper_axum/tests/ws_test_suite.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl WsIntegration for TestApp {
125125
fn run(
126126
&self,
127127
messages: Vec<WsIntegrationMessage>,
128-
) -> LocalBoxFuture<Result<(), anyhow::Error>> {
128+
) -> LocalBoxFuture<'_, Result<(), anyhow::Error>> {
129129
Box::pin(self.clone().run(messages))
130130
}
131131
}

0 commit comments

Comments
 (0)