]> git.lizzy.rs Git - rust.git/commitdiff
Remove unused tests
authortopecongiro <seuchida@gmail.com>
Fri, 23 Feb 2018 07:10:47 +0000 (16:10 +0900)
committertopecongiro <seuchida@gmail.com>
Fri, 23 Feb 2018 13:53:16 +0000 (22:53 +0900)
rustfmt-core/tests/source/chains-indent-visual.rs [deleted file]
rustfmt-core/tests/target/chains-indent-visual.rs [deleted file]

diff --git a/rustfmt-core/tests/source/chains-indent-visual.rs b/rustfmt-core/tests/source/chains-indent-visual.rs
deleted file mode 100644 (file)
index 8fdd3c4..0000000
+++ /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 (file)
index 23814e3..0000000
+++ /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();
-}