Skip to content

Commit

Permalink
Fix GRTestAssertionsRule
Browse files Browse the repository at this point in the history
  • Loading branch information
theseion committed Nov 1, 2023
1 parent b86dadb commit 5145add
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ checkClass: aClass

| comment |
aClass isMeta ifTrue: [ ^ self ].
comment := aClass classComment asString.
comment := aClass comment asString.
comment isWideString ifTrue: [ result addClass: aClass ]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ running
checkMethod: aMethod
aMethod methodClass isMeta
ifTrue: [ ^ self ].
(aMethod methodClass inheritsFrom: #TestCase)
(aMethod methodClass inheritsFrom: (Smalltalk classNamed: #TestCase))
ifFalse: [ ^ self ].
^ super checkMethod: aMethod

0 comments on commit 5145add

Please sign in to comment.