diff --git a/src/Chest-Commands-Tests/ChestCommandTest.class.st b/src/Chest-Commands-Tests/ChestCommandTest.class.st index 47ef410..cd1fdcb 100644 --- a/src/Chest-Commands-Tests/ChestCommandTest.class.st +++ b/src/Chest-Commands-Tests/ChestCommandTest.class.st @@ -1,20 +1,21 @@ Class { - #name : #ChestCommandTest, - #superclass : #TestCase, + #name : 'ChestCommandTest', + #superclass : 'TestCase', #instVars : [ 'initialChests' ], - #category : #'Chest-Commands-Tests' + #category : 'Chest-Commands-Tests', + #package : 'Chest-Commands-Tests' } -{ #category : #running } +{ #category : 'running' } ChestCommandTest >> setUp [ super setUp. initialChests := Chest allChests copy "Keep a copy of all the chests that currently exist" ] -{ #category : #running } +{ #category : 'running' } ChestCommandTest >> tearDown [ | nowChests | diff --git a/src/Chest-Commands-Tests/ChestPasteLoadCommandTest.class.st b/src/Chest-Commands-Tests/ChestPasteLoadCommandTest.class.st index e03b26c..5dd55bb 100644 --- a/src/Chest-Commands-Tests/ChestPasteLoadCommandTest.class.st +++ b/src/Chest-Commands-Tests/ChestPasteLoadCommandTest.class.st @@ -1,10 +1,11 @@ Class { - #name : #ChestPasteLoadCommandTest, - #superclass : #ChestCommandTest, - #category : #'Chest-Commands-Tests' + #name : 'ChestPasteLoadCommandTest', + #superclass : 'ChestCommandTest', + #category : 'Chest-Commands-Tests', + #package : 'Chest-Commands-Tests' } -{ #category : #tests } +{ #category : 'tests' } ChestPasteLoadCommandTest >> testBuildInjectedCode [ | chest obj command code | diff --git a/src/Chest-Commands-Tests/package.st b/src/Chest-Commands-Tests/package.st index 39d30ea..a395fec 100644 --- a/src/Chest-Commands-Tests/package.st +++ b/src/Chest-Commands-Tests/package.st @@ -1 +1 @@ -Package { #name : #'Chest-Commands-Tests' } +Package { #name : 'Chest-Commands-Tests' }