Skip to content

Commit

Permalink
Adapt to latest P12
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed May 30, 2023
1 parent a409a9c commit 7a9336d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Kernel-Tests/ClassDescriptionProtocolsTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,11 @@ ClassDescriptionProtocolsTest >> testProtocols [
class organization addProtocol: #human.
class organization addProtocol: #witch.

self assertCollection: class protocols hasSameElements: (#( #titan #human #witch ) collect: [ :protocolName | class organization protocolNamed: protocolName ]).
self assertCollection: class protocols hasSameElements: (#( #titan #human #witch ) collect: [ :protocolName | class protocolNamed: protocolName ]).

class organization removeProtocolIfEmpty: #titan.

self assertCollection: class protocols hasSameElements: (#( #human #witch ) collect: [ :protocolName | class organization protocolNamed: protocolName ])
self assertCollection: class protocols hasSameElements: (#( #human #witch ) collect: [ :protocolName | class protocolNamed: protocolName ])
]

{ #category : #tests }
Expand Down

0 comments on commit 7a9336d

Please sign in to comment.