Skip to content

Commit 96bf8db

Browse files
author
Durieux Pol
committed
change ordered collections to sets
1 parent 6ce833a commit 96bf8db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MuTalk-Utilities-Tests/MTNonMutatedMethodsAnalysisTest.class.st

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ MTNonMutatedMethodsAnalysisTest >> testNonMutatedMethods [
1414
analysis mtAnalysis operators: {
1515
MTReplacePlusWithMinusMutantOperator new.
1616
MTReplaceMinusWithPlusMutantOperator new }.
17-
results := analysis methodsWithoutMutation.
17+
results := analysis methodsWithoutMutation asSet.
1818

1919
self assert: results equals: {
2020
(MTAuxiliarClassForMatrix >> #initialize).
21-
(MTAuxiliarClassForMatrix >> #reset) } asOrderedCollection
21+
(MTAuxiliarClassForMatrix >> #reset) } asSet
2222
]

0 commit comments

Comments
 (0)