summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--META6.json4
-rw-r--r--t/simple-blocks.t2
2 files changed, 4 insertions, 2 deletions
diff --git a/META6.json b/META6.json
index 9ae6c1d..841e20c 100644
--- a/META6.json
+++ b/META6.json
@@ -1,4 +1,5 @@
{
+ "api": "0",
"authors": [
"Patrick Spek <p.spek@tyil.work>"
],
@@ -16,8 +17,9 @@
"resources": [
],
+ "source-url": "https://gitlab.com/tyil/perl6-string-fold",
"tags": [
],
- "version": "0.1.0"
+ "version": "0.1.2"
} \ No newline at end of file
diff --git a/t/simple-blocks.t b/t/simple-blocks.t
index e47572b..f775ed2 100644
--- a/t/simple-blocks.t
+++ b/t/simple-blocks.t
@@ -25,7 +25,7 @@ subtest "Single short line" => {
subtest "Single long line" => {
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;