Skip to content

Commit 84e08ca

Browse files
committed
Fix faulty tests, same as in master
1 parent 1e29fd1 commit 84e08ca

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
@@ -170,17 +170,17 @@ ok mix(my @large_arr = ("a"...*)[^50000]), "... a large array goes into a bar -
170170
my $buper = ("n" => 2.2, "e" => 4.4, "d" => 2.2, "y" => 2.2).Mix;
171171

172172
ok $b βŠ‚ $bub, "βŠ‚ - {$b.gist} is a strict submix of {$bub.gist}";
173-
ok $bub βŠ„ $buper, "βŠ„ - {$bub.gist} is not a strict submix of {$buper.gist}";
173+
nok $bub βŠ„ $buper, "βŠ„ - {$bub.gist} is not a strict submix of {$buper.gist}";
174174
ok $bub βŠ† $buper, "βŠ† - {$bub.gist} is a submix of {$buper.gist}";
175175
ok $buper ⊈ $bub, "⊈ - {$buper.gist} is not a submix of {$bub.gist}";
176176
ok $bub βŠƒ $b, "βŠƒ - {$bub.gist} is a strict supermix of {$b.gist}";
177177
ok $buper βŠ… $bub, "βŠ… - {$buper.gist} is not a strict supermix of {$bub.gist}";
178178
ok $buper βŠ‡ $bub, "βŠ‡ - {$buper.gist} is a supermix of {$bub.gist}";
179179
ok $bub βŠ‰ $buper, "βŠ‰ - {$bub.gist} is not a supermix of {$buper.gist}";
180180
ok $b (<) $bub, "(<) - {$b.gist} is a strict submix of {$bub.gist} (texas)";
181-
ok $bub !(<) $buper, "!(<) - {$bub.gist} is not a strict submix of {$buper.gist} (texas)";
181+
nok $bub !(<) $buper, "!(<) - {$bub.gist} is a strict submix of {$buper.gist} (texas)";
182182
ok $bub (>) $b, "(>) - {$bub.gist} is a strict supermix of {$b.gist} (texas)";
183-
ok $buper !(>) $bub, "!(>) - {$buper.gist} is not a strict supermix of {$bub.gist}";
183+
nok $buper !(>) $bub, "!(>) - {$buper.gist} is a strict supermix of {$bub.gist}";
184184
ok $bub (<=) $buper, "(<=) - {$bub.gist} submix {$buper.gist} (texas)";
185185
ok $buper !(<=) $bub, "!(<=) - {$buper.gist} is not a submix of {$bub.gist} (texas)";
186186
ok $buper (>=) $bub, "(>=) - {$buper.gist} is a supermix of {$bub.gist} (texas)";

0 commit comments

Comments
Β (0)