From dc16d69b1f8257015df76050da07e4b2609bd593 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Fri, 19 Apr 2024 15:03:59 +0200 Subject: [PATCH] Change 'tests' group to 'All' in Baseline --- .../BaselineOfPharoWithStyle.class.st | 11 ++++++----- BaselineOfPharoWithStyle/package.st | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/BaselineOfPharoWithStyle/BaselineOfPharoWithStyle.class.st b/BaselineOfPharoWithStyle/BaselineOfPharoWithStyle.class.st index 7380e4c..74c0f7e 100644 --- a/BaselineOfPharoWithStyle/BaselineOfPharoWithStyle.class.st +++ b/BaselineOfPharoWithStyle/BaselineOfPharoWithStyle.class.st @@ -1,10 +1,11 @@ Class { - #name : #BaselineOfPharoWithStyle, - #superclass : #BaselineOf, - #category : #BaselineOfPharoWithStyle + #name : 'BaselineOfPharoWithStyle', + #superclass : 'BaselineOf', + #category : 'BaselineOfPharoWithStyle', + #package : 'BaselineOfPharoWithStyle' } -{ #category : #baselines } +{ #category : 'baselines' } BaselineOfPharoWithStyle >> baseline: spec [ @@ -14,5 +15,5 @@ BaselineOfPharoWithStyle >> baseline: spec [ package: 'PharoWithStyle-Tests' with: [ spec requires: 'PharoWithStyle' ]. spec group: 'default' with: #('PharoWithStyle'); - group: 'tests' with: #('PharoWithStyle' 'PharoWithStyle-Tests') ] + group: 'All' with: #('PharoWithStyle' 'PharoWithStyle-Tests') ] ] diff --git a/BaselineOfPharoWithStyle/package.st b/BaselineOfPharoWithStyle/package.st index 0e0ad10..2034c54 100644 --- a/BaselineOfPharoWithStyle/package.st +++ b/BaselineOfPharoWithStyle/package.st @@ -1 +1 @@ -Package { #name : #BaselineOfPharoWithStyle } +Package { #name : 'BaselineOfPharoWithStyle' }