Skip to content

Commit b929db4

Browse files
committed
Remove trailing whitespace
1 parent 75f4275 commit b929db4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

S32-io/spurt.t

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sub all-basic(Callable $handle) {
1717
my Blob $buf = "hello world".encode("utf-8");
1818
my $txt = "42";
1919

20-
spurt $handle(), $buf;
20+
spurt $handle(), $buf;
2121
is slurp($path, :bin), $buf, "spurting Buf ok";
2222

2323
spurt $handle(), $txt;
@@ -33,7 +33,7 @@ sub all-basic(Callable $handle) {
3333
spurt $handle(), $txt;
3434
spurt $handle(), $txt, :append;
3535
is slurp($path), ($txt ~ $txt), "spurting txt with append";
36-
36+
3737
unlink $path;
3838

3939
lives-ok { spurt $handle(), $buf, :createonly }, "createonly creates file with Buf";
@@ -89,12 +89,12 @@ sub all-basic(Callable $handle) {
8989
my Blob $buf = "meow".encode("ASCII");
9090
$path.IO.spurt($buf);
9191
is slurp($path, :bin), $buf, "IO::Handle binary slurp";
92-
92+
9393
dies-ok { $path.IO.spurt("nope", :createonly) }, "IO::Handle :createonly dies";
9494
unlink $path;
9595
lives-ok { $path.IO.spurt("yes", :createonly) }, "IO::Handle :createonly lives";
9696
ok $path.IO.e, "IO::Handle :createonly created a file";
97-
97+
9898
# Append
9999
{
100100
my $io = $path.IO;

0 commit comments

Comments
 (0)