From 161c830c15b9fb6d8ea3dc2b3f49c7c495b98515 Mon Sep 17 00:00:00 2001 From: Aliaksei Bialiauski Date: Thu, 19 Sep 2024 20:36:27 +0300 Subject: [PATCH] feat(#129): convention Co-authored-by: Ivan Ivanchuk --- cli/tests/integration_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tests/integration_test.rs b/cli/tests/integration_test.rs index 7aa9771b..e5c7c97a 100644 --- a/cli/tests/integration_test.rs +++ b/cli/tests/integration_test.rs @@ -75,7 +75,7 @@ mod tests { // Now we have test for linux and macos. However, we need to maintain // similar test case for windows as well. async fn accepts_request_in_detached_mode() -> Result<()> { - let _kill = defer(|| kill(3000)); + let _defer = defer(|| kill(3000)); let assertion = Command::cargo_bin("cli")?.arg("start").arg("-d").assert(); let bytes = assertion.get_output().stdout.as_slice(); let output = str::from_utf8(bytes)?;