summaryrefslogtreecommitdiffstats
path: root/tests-integration
diff options
context:
space:
mode:
authorLucio Franco <luciofranco14@gmail.com>2020-08-27 20:05:48 -0400
committerGitHub <noreply@github.com>2020-08-27 20:05:48 -0400
commitd600ab9a8f37e9eff3fa8587069a816b65b6da0b (patch)
tree06d14901604c5c7822b43d9f4973fdccd15509e7 /tests-integration
parentd9d909cb4c6d326423ee02fbcf6bbfe5553d2c0a (diff)
rt: Refactor `Runtime::block_on` to take `&self` (#2782)
Co-authored-by: Eliza Weisman <eliza@buoyant.io>
Diffstat (limited to 'tests-integration')
-rw-r--r--tests-integration/tests/rt_shell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-integration/tests/rt_shell.rs b/tests-integration/tests/rt_shell.rs
index 392c0519..012f44a7 100644
--- a/tests-integration/tests/rt_shell.rs
+++ b/tests-integration/tests/rt_shell.rs
@@ -18,7 +18,7 @@ fn basic_shell_rt() {
});
for _ in 0..1_000 {
- let mut rt = runtime::Builder::new().build().unwrap();
+ let rt = runtime::Builder::new().build().unwrap();
let (tx, rx) = oneshot::channel();