From 536390509f9844421196416249bdbe5afe101238 Mon Sep 17 00:00:00 2001 From: Lawrence Chou Date: Thu, 18 Oct 2018 00:05:51 +0800 Subject: [PATCH] remove --wrap for now --- tests/integration_tests.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 278c2bac..a33604b8 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -101,7 +101,6 @@ fn tabs_passthrough_wrapped() { bat() .arg("tabs.txt") .arg("--tabs=0") - .arg("--wrap=character") .arg("--style=plain") .arg("--decorations=always") .assert() @@ -124,7 +123,6 @@ fn tabs_4_wrapped() { bat() .arg("tabs.txt") .arg("--tabs=4") - .arg("--wrap=character") .arg("--style=plain") .arg("--decorations=always") .assert() @@ -147,7 +145,6 @@ fn tabs_8_wrapped() { bat() .arg("tabs.txt") .arg("--tabs=8") - .arg("--wrap=character") .arg("--style=plain") .arg("--decorations=always") .assert() @@ -170,7 +167,6 @@ fn tabs_passthrough() { bat() .arg("tabs.txt") .arg("--tabs=0") - .arg("--wrap=never") .arg("--style=plain") .arg("--decorations=always") .assert() @@ -193,7 +189,6 @@ fn tabs_4() { bat() .arg("tabs.txt") .arg("--tabs=4") - .arg("--wrap=never") .arg("--style=plain") .arg("--decorations=always") .assert() @@ -216,7 +211,6 @@ fn tabs_8() { bat() .arg("tabs.txt") .arg("--tabs=8") - .arg("--wrap=never") .arg("--style=plain") .arg("--decorations=always") .assert()