From 71ece8ea5a0d7dadcd4bde6eff946e6866ad50f2 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Tue, 18 May 2021 16:31:29 -0400 Subject: [PATCH] Fix warning in oneshot test (#587) Co-authored-by: David Pedersen --- tower/tests/util/oneshot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower/tests/util/oneshot.rs b/tower/tests/util/oneshot.rs index 3025edae..54120e72 100644 --- a/tower/tests/util/oneshot.rs +++ b/tower/tests/util/oneshot.rs @@ -11,7 +11,7 @@ async fn service_driven_to_readiness() { struct PollMeTwice { ready: bool, - }; + } impl Service<()> for PollMeTwice { type Error = (); type Response = ();