From: topecongiro Date: Fri, 23 Feb 2018 07:10:47 +0000 (+0900) Subject: Remove unused tests X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=e2e653bc8f91b13d6a55aa2bef7e80eb1c22f43b;p=rust.git Remove unused tests --- diff --git a/rustfmt-core/tests/source/chains-indent-visual.rs b/rustfmt-core/tests/source/chains-indent-visual.rs deleted file mode 100644 index 8fdd3c4cabf..00000000000 --- a/rustfmt-core/tests/source/chains-indent-visual.rs +++ /dev/null @@ -1,5 +0,0 @@ -// rustfmt-indent_style: Visual - -fn test() { - let x = my_long_function().my_even_longer_function().my_nested_function().some_random_name().another_function().do_it(); -} diff --git a/rustfmt-core/tests/target/chains-indent-visual.rs b/rustfmt-core/tests/target/chains-indent-visual.rs deleted file mode 100644 index 23814e3dbe1..00000000000 --- a/rustfmt-core/tests/target/chains-indent-visual.rs +++ /dev/null @@ -1,9 +0,0 @@ -// rustfmt-indent_style: Visual - -fn test() { - let x = my_long_function().my_even_longer_function() - .my_nested_function() - .some_random_name() - .another_function() - .do_it(); -}