From c68b9210f3f751af8d81a9009cdfd63268660353 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 25 Jan 2024 00:25:32 +0100 Subject: [PATCH] Linter: Shorter lines are not wrapped --- bin/ref-type/tests/integration.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/bin/ref-type/tests/integration.rs b/bin/ref-type/tests/integration.rs index 89561a5c7a..99b378cf22 100644 --- a/bin/ref-type/tests/integration.rs +++ b/bin/ref-type/tests/integration.rs @@ -21,18 +21,12 @@ fn junk_is_other() { #[test] fn valid_version_is_release() { - assert_eq!( - stdout("refs/tags/0.0.0"), - "value=release\n" - ); + assert_eq!(stdout("refs/tags/0.0.0"), "value=release\n"); } #[test] fn valid_version_with_trailing_characters_is_other() { - assert_eq!( - stdout("refs/tags/0.0.0-rc1"), - "value=other\n" - ); + assert_eq!(stdout("refs/tags/0.0.0-rc1"), "value=other\n"); } #[test]