Skip to content

Commit

Permalink
Fixes to TestResult. Thanks Felipe.
Browse files Browse the repository at this point in the history
  • Loading branch information
jvuletich committed Nov 29, 2024
1 parent 0c55f57 commit 3bee097
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
'From Cuis7.1 [latest update: #6875] on 29 November 2024 at 12:01:40 pm'!

!TestResult methodsFor: 'accessing' stamp: 'fgz 11/29/2024 11:59:31'!
unexpectedErrors
^ errors ifNil: [ errors := OrderedCollection new ] ifNotNil: [ errors select: [:each | each shouldPass] ]! !

!TestResult methodsFor: 'accessing' stamp: 'fgz 11/29/2024 12:00:55'!
unexpectedFailures
^ failures ifNil: [ failures := OrderedCollection new ] ifNotNil: [ failures select: [:each | each shouldPass] ]! !

0 comments on commit 3bee097

Please sign in to comment.