Skip to content

Commit 46bd9a7

Browse files
committed
[v6.d REVIEW] Fix code typo
Made in c44a301
1 parent fd0b683 commit 46bd9a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

S03-operators/buf.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ throws-like { Buf.new().subbuf(0, -1) }, X::OutOfRange,
173173
{
174174
for <prepend unshift> -> $what {
175175
my $a = Buf.new(1, 2, 3);
176-
ok $a, '===', $a."$what"(4), "$what returns self";
176+
cmp-ok $a, '===', $a."$what"(4), "$what returns self";
177177
is $a.elems, 4, "Buf .elems correct after $what";
178178
is-deeply $a[0], 4, "Buf first element correct after $what";
179179

0 commit comments

Comments
 (0)