diff options
author | Steven Schubiger <stsc@refcnt.org> | 2015-10-04 14:56:51 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2015-10-04 14:56:51 +0200 |
commit | b2b1fa65b9f09ee878e2ad48c5396f6e9460f673 (patch) | |
tree | c24107954a7705d9d8e7e9e06c9b53d477f0ed5a /test.pl | |
parent | 0ffd3036fe3f53cf5e6d25f128c075163b305f68 (diff) | |
download | colorize-b2b1fa65b9f09ee878e2ad48c5396f6e9460f673.tar.gz colorize-b2b1fa65b9f09ee878e2ad48c5396f6e9460f673.tar.bz2 |
Readjust indentation of tests
Diffstat (limited to 'test.pl')
-rwxr-xr-x | test.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,8 +128,8 @@ SKIP: { my $switch = "--$type"; - is(qx(printf %s "\e[35mhello\e[0m \e[36mworld\e[0m" | $program $switch), 'hello world', "$type colored words"); - is(qx(printf %s "hello world" | $program Magenta | $program $switch), 'hello world', "$type colored line"); + is(qx(printf %s "\e[35mhello\e[0m \e[36mworld\e[0m" | $program $switch), 'hello world', "$type colored words"); + is(qx(printf %s "hello world" | $program Magenta | $program $switch), 'hello world', "$type colored line"); is_deeply([split /\n/, qx($program cyan $infile1 | $program $switch)], [split /\n/, $text], "$type colored text"); ok(qx(printf %s "\e[\e[33m" | $program $switch) eq "\e[", "$type with invalid sequence"); |