Skip to content

Commit

Permalink
[fix] uses classForTestResult rather than direct reference to TestResult
Browse files Browse the repository at this point in the history
  • Loading branch information
hogoww committed Jul 29, 2021
1 parent 784c4db commit 8d3fa07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MuTalk-Model/MethodMutation.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
'nodeToMutate',
'testCaseReferences'
],
#category : 'MuTalk-Model'
#category : #'MuTalk-Model'
}

{ #category : #'instance creation' }
Expand Down Expand Up @@ -138,7 +138,7 @@ MethodMutation >> runMutant [
{ #category : #private }
MethodMutation >> runTests [
| results |
results := TestResultCollected new.
results := TestAsserter classForTestResult new.
testCaseReferences collect: [ :tcr | results addAllResults: tcr runUnchecked ].
^ results
]
Expand Down

0 comments on commit 8d3fa07

Please sign in to comment.