From 95edb8ac3c45ef35161073243e40faadb64c09ef Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 12 Nov 2016 09:28:30 -0800 Subject: [PATCH] Fix long lines (#80) --- src/integration.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/integration.rs b/src/integration.rs index 0dfae43..5d48c3e 100644 --- a/src/integration.rs +++ b/src/integration.rs @@ -517,7 +517,8 @@ fn unknown_override_options() { a = `exit 222`", 255, "", - "error: Variables `baz` and `foo` overridden on the command line but not present in justfile\n", + "error: Variables `baz` and `foo` overridden on the command line but not present \ + in justfile\n", ); } @@ -531,7 +532,8 @@ fn unknown_override_args() { a = `exit 222`", 255, "", - "error: Variables `baz` and `foo` overridden on the command line but not present in justfile\n", + "error: Variables `baz` and `foo` overridden on the command line but not present \ + in justfile\n", ); } @@ -934,7 +936,8 @@ fn color_always() { "b = a\na = `exit 100`\nbar:\n echo '{{`exit 200`}}'", 100, "", - "\u{1b}[1;31merror:\u{1b}[0m \u{1b}[1mbacktick failed with exit code 100\n\u{1b}[0m |\n2 | a = `exit 100`\n | \u{1b}[1;31m^^^^^^^^^^\u{1b}[0m\n", + "\u{1b}[1;31merror:\u{1b}[0m \u{1b}[1mbacktick failed with exit code 100 +\u{1b}[0m |\n2 | a = `exit 100`\n | \u{1b}[1;31m^^^^^^^^^^\u{1b}[0m\n", ); }