Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jvuletich committed May 9, 2024
1 parent 54913c7 commit a26421e
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
'From Cuis6.3 [latest update: #6351] on 9 May 2024 at 4:31:52 pm'!

!ProgressiveTestRunner methodsFor: 'show result - private' stamp: 'jmv 5/9/2024 16:31:22'!
showDefects

| defects |

defects := testResult defects.
defects size = 1
ifTrue: [ defects anyOne debug ]
ifFalse: [ self openTestResultWindow]! !


!ProgressiveTestRunner methodsFor: 'evaluating - private' stamp: 'jmv 5/9/2024 16:31:29'!
runSuite

testResult := testSuite run.
testResult hasPassed
ifTrue: [ self informAllTestPassed ]
ifFalse: [self showDefects ]
! !

!methodRemoval: ProgressiveTestRunner #showDeffects stamp: 'jmv 5/9/2024 16:31:36'!
ProgressiveTestRunner removeSelector: #showDeffects!

0 comments on commit a26421e

Please sign in to comment.