From d711b033bf9601b9a17ef2adaaa007b90b976191 Mon Sep 17 00:00:00 2001 From: Martin Dias Date: Fri, 12 Jul 2024 19:05:23 -0400 Subject: [PATCH] Base mistake in baseline + reformat another baseline --- .../BaselineOfGridCombineGame.class.st | 5 ++--- src/BaselineOfMemory/BaselineOfMemory.class.st | 9 +++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/BaselineOfGridCombineGame/BaselineOfGridCombineGame.class.st b/src/BaselineOfGridCombineGame/BaselineOfGridCombineGame.class.st index e272e50..84561f9 100644 --- a/src/BaselineOfGridCombineGame/BaselineOfGridCombineGame.class.st +++ b/src/BaselineOfGridCombineGame/BaselineOfGridCombineGame.class.st @@ -20,9 +20,8 @@ BaselineOfGridCombineGame >> baseline: spec [ spec package: #'Bloc-GridCombineGame'; package: #'Bloc-GridCombineGame-UI' with: [ - spec requires: #( #'Bloc-GridCombineGame' #'Bloc' ); + spec requires: #( #'Bloc-GridCombineGame' #'Bloc' ) ]; package: #'Bloc-GridCombineGame-Tests' with: [ - spec requires: #( #'Bloc-GridCombineGame-UI' ) ] ] + spec requires: #( #'Bloc-GridCombineGame-UI' ) ] ] - ] diff --git a/src/BaselineOfMemory/BaselineOfMemory.class.st b/src/BaselineOfMemory/BaselineOfMemory.class.st index d2d38f5..82f4f5a 100644 --- a/src/BaselineOfMemory/BaselineOfMemory.class.st +++ b/src/BaselineOfMemory/BaselineOfMemory.class.st @@ -7,14 +7,15 @@ Class { { #category : #baselines } BaselineOfMemory >> baseline: spec [ + spec for: #common do: [ spec - baseline: 'Bloc' + baseline: #'Bloc' with: [ spec repository: 'github://pharo-graphics/Bloc:master/src' ]. spec package: #'Bloc-Memory' with: [ - spec requires: #( #Bloc ) ]; + spec requires: #( #'Bloc' ) ]; package: #'Bloc-Memory-Tests' with: [ - spec requires: #( #'Bloc-Memory' ) ] ] - + spec requires: #( #'Bloc-Memory' ) ] + ] ]