Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix test
  • Loading branch information
MarcusDenker committed Mar 15, 2019
1 parent 72cedd6 commit 8f56791
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Collections-Tests/DictionaryTest.class.st
Expand Up @@ -411,7 +411,7 @@ DictionaryTest >> testDictionaryPublicProtocolCompatibility [
do: [ :assoc |
assoc value protocols
reject: [ :protocol |
#('private' 'print' 'copy' 'compar' '*')
#('private' 'print' 'undeclared' 'copy' 'compar' '*')
anySatisfy: [ :each | protocol asString beginsWith: each ] ]
thenDo: [ :protocol |
(assoc value selectorsInProtocol: protocol)
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Tests/OrderedDictionaryTest.class.st
Expand Up @@ -729,7 +729,7 @@ OrderedDictionaryTest >> testDictionaryPublicProtocolCompatibility [
do: [:assoc |
assoc value protocols
reject: [:protocol |
#('private' 'print' 'copy' 'compar' '*')
#('private' 'print' 'undeclared' 'copy' 'compar' '*')
anySatisfy: [:each | protocol asString beginsWith: each]]
thenDo: [:protocol |
(assoc value selectorsInProtocol: protocol)
Expand Down

0 comments on commit 8f56791

Please sign in to comment.