Skip to content

Commit

Permalink
Adapt tests to new Set|Bag|Mix.new() behaviour
Browse files Browse the repository at this point in the history
As implemented in aab2b98
  • Loading branch information
lizmat committed Oct 30, 2017
1 parent 868491a commit cbfc939
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion S02-types/bag.t
Expand Up @@ -539,7 +539,7 @@ subtest '.hash does not cause keys to be stringified' => {
}

{
ok Bag.new =:= bag(), 'Bag.new returns the empty bag';
nok Bag.new =:= bag(), 'Bag.new returns a new empty bag';
ok ().Bag =:= bag(), '().Bag returns the empty bag';
}

Expand Down
2 changes: 1 addition & 1 deletion S02-types/mix.t
Expand Up @@ -489,7 +489,7 @@ subtest '.hash does not cause keys to be stringified' => {
}

{
ok Mix.new =:= mix(), 'Mix.new returns the empty mix';
nok Mix.new =:= mix(), 'Mix.new returns a new empty mix';
ok ().Mix =:= mix(), '().Mix returns the empty mix';
}

Expand Down
2 changes: 1 addition & 1 deletion S02-types/set.t
Expand Up @@ -475,7 +475,7 @@ subtest '.hash does not cause keys to be stringified' => {
}

{
ok Set.new =:= set(), 'Set.new returns the empty set';
nok Set.new =:= set(), 'Set.new returns a new empty set';
ok ().Set =:= set(), '().Set returns the empty set';
}

Expand Down

0 comments on commit cbfc939

Please sign in to comment.