From 11b0e030eccefc9b61ab8cffeff6765ccca40cdf Mon Sep 17 00:00:00 2001
From: ClotildeToullec <clotilde.toullec@inria.fr>
Date: Mon, 8 Jul 2024 17:46:07 +0200
Subject: [PATCH] Fix baseline to be able to use 'MotionMoose' group when
 loading with Metacello.

---
 BaselineOfMoTion/BaselineOfMoTion.class.st | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/BaselineOfMoTion/BaselineOfMoTion.class.st b/BaselineOfMoTion/BaselineOfMoTion.class.st
index 74a1a8b..bfff390 100644
--- a/BaselineOfMoTion/BaselineOfMoTion.class.st
+++ b/BaselineOfMoTion/BaselineOfMoTion.class.st
@@ -8,11 +8,12 @@ Class {
 BaselineOfMoTion >> baseline: spec [
 
 	<baseline>
-	spec for: #common do: [ 
+	spec for: #common do: [
 		spec
 			package: #MoTion;
-			package: #'MoTion-Tests' with: [ spec requires: #( 'MoTion' ) ].
-		spec for: #MooseX do: [ spec package: 'MoTion-Moose' ].
-		spec group: 'MoTionMoose' with: #( 'MoTion' 'MoTion-Tests' 'MoTion-Moose').
-		spec group: 'default' with: #( 'MoTion' 'MoTion-Tests' ) ]
+			package: #'MoTion-Tests' with: [ spec requires: #( 'MoTion' ) ];
+			package: #'MoTion-Moose' with: [ spec requires: #( 'MoTion' ) ].
+
+		spec group: 'default' with: #( 'MoTion' 'MoTion-Tests' ).
+		spec group: 'MoTionMoose' with: #( 'default' 'MoTion-Moose' ) ]
 ]