Skip to content

Commit 291b557

Browse files
committed
Fix faulty tests
1 parent 2e1f7d9 commit 291b557

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

S03-operators/mix.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ ok mix(my @large_arr = ("a"...*)[^50000]), "... a large array goes into a bar -
8181
my $buper = (n => 2.2, e => 4.4, d => 2.2, y => 2.2).Mix;
8282

8383
ok $b $bub, "⊂ - {$b.gist} is a strict submix of {$bub.gist}";
84-
ok $bub $buper, "⊄ - {$bub.gist} is not a strict submix of {$buper.gist}";
84+
nok $bub $buper, "⊄ - {$bub.gist} is a strict submix of {$buper.gist}";
8585
ok $bub $b, "⊃ - {$bub.gist} is a strict supermix of {$b.gist}";
8686
ok $b (<) $bub, "(<) - {$b.gist} is a strict submix of {$bub.gist} (texas)";
87-
ok $bub !(<) $buper, "!(<) - {$bub.gist} is not a strict submix of {$buper.gist} (texas)";
87+
nok $bub !(<) $buper, "!(<) - {$bub.gist} is a strict submix of {$buper.gist} (texas)";
8888
ok $bub (>) $b, "(>) - {$bub.gist} is a strict supermix of {$b.gist} (texas)";
89-
ok $buper !(>) $bub, "!(>) - {$buper.gist} is not a strict supermix of {$bub.gist}";
89+
nok $buper !(>) $bub, "!(>) - {$buper.gist} is a strict supermix of {$bub.gist}";
9090
}
9191

9292
{

0 commit comments

Comments
 (0)