diff options
author | Steven Schubiger <stsc@refcnt.org> | 2017-10-08 20:46:18 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2017-10-08 20:46:18 +0200 |
commit | c49f01aa0f24af3579d60e8534fda6097e762277 (patch) | |
tree | 95f03094471ca1a6327de3942f64538c73da56e3 /test.pl | |
parent | fd286538c23b3d28dc7aa0165fdb54456042d0fe (diff) | |
download | colorize-c49f01aa0f24af3579d60e8534fda6097e762277.tar.gz colorize-c49f01aa0f24af3579d60e8534fda6097e762277.tar.bz2 |
Omit superfluous quotes
Diffstat (limited to 'test.pl')
-rwxr-xr-x | test.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ SKIP: { { # Check that a 'none' foreground color (with a background color present) # will be substituted by 'default'. - my $colored_text = qx(printf '%s' "foo bar baz" | $valgrind_cmd$program none/black); + my $colored_text = qx(printf %s "foo bar baz" | $valgrind_cmd$program none/black); is($colored_text, "\e[40m\e[39mfoo bar baz\e[0m", 'no color sequences printed'); } |