Skip to content

Commit a081844

Browse files
committed
Unfudge some multiple whatever related tests
1 parent 6f3f981 commit a081844

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

S32-array/delete.t

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ sub make-string(@a) {
5454

5555
# W/ multiple positive and negative indices:
5656
#?pugs todo
57-
#?rakudo skip 'multiple whatevers fail'
5857
{
5958
my @array = <a b c d e f>;
6059
is ~(@array[2, *-3, *-1]:delete), "c d f",
@@ -69,14 +68,14 @@ sub make-string(@a) {
6968
# Results taken from Perl 5
7069
#?niecza todo "Not sure if this test is correct or not"
7170
#?pugs todo "Not sure if this test is correct or not"
72-
#?rakudo skip 'multiple whatevers fail'
71+
#?rakudo todo "seem to do this wrong atm"
7372
{
7473
my @array = <a b c>;
75-
is ~(@array[2, *-1]:delete), "c b",
74+
is ~(@array[2, *-1]:delete), "c (Any)",
7675
"deletion of the same array element accessed by different indices returned right things";
77-
is ~@array, "a",
76+
is ~@array, "a b",
7877
"deletion of the same array element accessed by different indices (1)";
79-
is +@array, 1,
78+
is +@array, 2,
8079
"deletion of the same array element accessed by different indices (2)";
8180
}
8281

0 commit comments

Comments
 (0)