Skip to content

Commit cbfc939

Browse files
committed
Adapt tests to new Set|Bag|Mix.new() behaviour
As implemented in aab2b98
1 parent 868491a commit cbfc939

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

S02-types/bag.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ subtest '.hash does not cause keys to be stringified' => {
539539
}
540540

541541
{
542-
ok Bag.new =:= bag(), 'Bag.new returns the empty bag';
542+
nok Bag.new =:= bag(), 'Bag.new returns a new empty bag';
543543
ok ().Bag =:= bag(), '().Bag returns the empty bag';
544544
}
545545

S02-types/mix.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ subtest '.hash does not cause keys to be stringified' => {
489489
}
490490

491491
{
492-
ok Mix.new =:= mix(), 'Mix.new returns the empty mix';
492+
nok Mix.new =:= mix(), 'Mix.new returns a new empty mix';
493493
ok ().Mix =:= mix(), '().Mix returns the empty mix';
494494
}
495495

S02-types/set.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ subtest '.hash does not cause keys to be stringified' => {
475475
}
476476

477477
{
478-
ok Set.new =:= set(), 'Set.new returns the empty set';
478+
nok Set.new =:= set(), 'Set.new returns a new empty set';
479479
ok ().Set =:= set(), '().Set returns the empty set';
480480
}
481481

0 commit comments

Comments
 (0)