Skip to content

Commit

Permalink
Fix #35
Browse files Browse the repository at this point in the history
  • Loading branch information
astares committed May 28, 2024
1 parent d4cf5b1 commit d60a4a6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/XML-Parser-Tests/DTDExternalEntityResolverTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,8 @@ DTDExternalEntityResolverTest >> testDecoratorInterfaceCompatibility [
resolver := self newResolver.
resolverBaseClass := DTDExternalEntityResolver.
"avoid #methodsDo: for GS compatibility"
resolverBaseClass selectorsDo: [:each |
"use #whichCategoryIncludesSelector: for backwards compatibility"
((resolverBaseClass whichCategoryIncludesSelector: each)
resolverBaseClass selectorsDo: [:each |
((self whichProtocolIn: resolverBaseClass includesSelector: each)
asString beginsWith: 'private')
ifFalse: [
self assert: (resolver respondsTo: each)]]
Expand Down

0 comments on commit d60a4a6

Please sign in to comment.