diff options
author | Patrick Spek <p.spek@tyil.nl> | 2018-08-28 16:44:20 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2018-08-28 16:44:20 +0200 |
commit | 730826c9398fc0a995e565b4f0a385e1c218844d (patch) | |
tree | 339db0ce32d18a20bbd52b01a3e4ee3d2177342f | |
parent | 0fb63e3652322be64669666f9c9d2283417166c6 (diff) | |
download | string-fold-730826c9398fc0a995e565b4f0a385e1c218844d.tar.gz string-fold-730826c9398fc0a995e565b4f0a385e1c218844d.tar.bz2 |
Fix flunky test
-rw-r--r-- | t/simple-blocks.t | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/t/simple-blocks.t b/t/simple-blocks.t index b52e721..f775ed2 100644 --- a/t/simple-blocks.t +++ b/t/simple-blocks.t @@ -24,10 +24,8 @@ subtest "Single short line" => { } subtest "Single long line" => { - plan 1; - my $result = slurp("t/files/input/single-long-line.txt").trim.&fold(); - my @expected-lines = slurp("t/files/output/single-long-line.txt").trim.lines; + my @expected-lines = slurp("t/files/output/single-long-line.txt").trim.lines; my @result-lines = $result.lines; plan 1 + @expected-lines.elems; |