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()