Skip to content

Commit

Permalink
Unfudge now-passing native array tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Dec 24, 2017
1 parent 946e42e commit 8533ec6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion S09-typed-arrays/native-int.t
Expand Up @@ -235,7 +235,6 @@ for flat @int,@uint -> $T {
@arr = ();
@arr[4] = 22;
#?rakudo todo 'RT #127756'
is @arr.join(":"), "0:0:0:0:22", "does emptying a $t array really empty";
my @holes := array[$T].new;
Expand Down
1 change: 0 additions & 1 deletion S09-typed-arrays/native-num.t
Expand Up @@ -241,7 +241,6 @@ for @num -> $T {
@arr = ();
@arr[4] = 22.1e0;
#?rakudo todo 'RT #127756'
ok @arr.join(":").starts-with("0:0:0:0:22.1"), # num32 accurracy issues
"does emptying a $t array really empty";
Expand Down
1 change: 0 additions & 1 deletion S09-typed-arrays/native-str.t
Expand Up @@ -230,7 +230,6 @@ is @arr.join(":"), "a:b:c:d:e", "does join a $t array";
@arr = ();
@arr[4] = "z";
#?rakudo todo 'RT #127756'
is @arr.join(":"), "::::z", "does emptying a $t array really empty";
my @holes := array[$T].new;
Expand Down

0 comments on commit 8533ec6

Please sign in to comment.