From 88fcfd76aa98633d16a0b6470b51f073b5d8ef87 Mon Sep 17 00:00:00 2001 From: Lawrence Chou Date: Fri, 19 Oct 2018 08:55:50 +0800 Subject: [PATCH] cargo fmt --- tests/integration_tests.rs | 42 +++++++++++++++++++++++++------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index fe7b960b..4edc072e 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -105,7 +105,8 @@ fn tabs_numbers() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 1 2 3 4 + .stdout( + " 1 1 2 3 4 2 1 ? 3 22 ? 4 333 ? @@ -114,7 +115,8 @@ fn tabs_numbers() { 7 666666 ? 8 7777777 ? 9 88888888 ? -"); +", + ); } #[test] @@ -126,7 +128,8 @@ fn tabs_passthrough_wrapped() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 2 3 4 + .stdout( + " 1 2 3 4 1 ? 22 ? 333 ? @@ -135,7 +138,8 @@ fn tabs_passthrough_wrapped() { 666666 ? 7777777 ? 88888888 ? -"); +", + ); } #[test] @@ -147,7 +151,8 @@ fn tabs_4_wrapped() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 2 3 4 + .stdout( + " 1 2 3 4 1 ? 22 ? 333 ? @@ -156,7 +161,8 @@ fn tabs_4_wrapped() { 666666 ? 7777777 ? 88888888 ? -"); +", + ); } #[test] @@ -168,7 +174,8 @@ fn tabs_8_wrapped() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 2 3 4 + .stdout( + " 1 2 3 4 1 ? 22 ? 333 ? @@ -177,7 +184,8 @@ fn tabs_8_wrapped() { 666666 ? 7777777 ? 88888888 ? -"); +", + ); } #[test] @@ -189,7 +197,8 @@ fn tabs_passthrough() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 2 3 4 + .stdout( + " 1 2 3 4 1 ? 22 ? 333 ? @@ -198,7 +207,8 @@ fn tabs_passthrough() { 666666 ? 7777777 ? 88888888 ? -"); +", + ); } #[test] @@ -210,7 +220,8 @@ fn tabs_4() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 2 3 4 + .stdout( + " 1 2 3 4 1 ? 22 ? 333 ? @@ -219,7 +230,8 @@ fn tabs_4() { 666666 ? 7777777 ? 88888888 ? -"); +", + ); } #[test] @@ -231,7 +243,8 @@ fn tabs_8() { .arg("--decorations=always") .assert() .success() - .stdout(" 1 2 3 4 + .stdout( + " 1 2 3 4 1 ? 22 ? 333 ? @@ -240,7 +253,8 @@ fn tabs_8() { 666666 ? 7777777 ? 88888888 ? -"); +", + ); } #[test]