Skip to content

Commit

Permalink
Base mistake in baseline + reformat another baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchodias committed Jul 12, 2024
1 parent 7c49458 commit d711b03
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) ]
]

]
9 changes: 5 additions & 4 deletions src/BaselineOfMemory/BaselineOfMemory.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ Class {
{ #category : #baselines }
BaselineOfMemory >> baseline: spec [
<baseline>

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' ) ]
]
]

0 comments on commit d711b03

Please sign in to comment.