Skip to content

Commit

Permalink
Adapt deprecated message
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrichau committed Feb 23, 2024
1 parent deceb70 commit 007d4a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ testAddAllFilesIn
(directory / '.Seaside_Store') ensureCreateFile .
(directory / 'foo') ensureCreateFile.
GRPlatform current doSilently: [
library := WAFileLibrary
subclass: #XXXTestFileLibrary
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'Uncategorized'.
library := WAFileLibrary classInstaller make: [ :builder |
builder
superclass: WAFileLibrary;
name: #XXXTestFileLibrary;
environment: WAFileLibrary environment ].
[ library addAllFilesIn: directory fullName.
self assert: library selectors size = 1 ] "reject .Seaside_Store"
ensure: [ library removeFromSystem ] ] ]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SystemOrganization addCategory: #'Seaside-Tests-Pharo-Core'!
self packageOrganizer ensurePackage: #'Seaside-Tests-Pharo-Core' withTags: #()!

0 comments on commit 007d4a2

Please sign in to comment.