From 77b81629e8a891d7b47875083e97a704f6fee0be Mon Sep 17 00:00:00 2001 From: Mariano Saura Date: Tue, 8 Aug 2023 15:32:35 -0300 Subject: [PATCH] Fixed baseline tests package loading --- source/BaselineOfBuoy/BaselineOfBuoy.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/BaselineOfBuoy/BaselineOfBuoy.class.st b/source/BaselineOfBuoy/BaselineOfBuoy.class.st index ba216ae..8c51ec6 100644 --- a/source/BaselineOfBuoy/BaselineOfBuoy.class.st +++ b/source/BaselineOfBuoy/BaselineOfBuoy.class.st @@ -133,7 +133,7 @@ BaselineOfBuoy >> baselineMath: spec [ group: 'Deployment' with: 'Buoy-Math'; package: 'Buoy-Math-Extensions' with: [ spec requires: 'Buoy-Math' ]; group: 'Deployment' with: 'Buoy-Math-Extensions'; - package: 'Buoy-Math-Tests' with: [ spec requires: #('Buoy-Math' 'Dependent-SUnit-Extensions') ]; + package: 'Buoy-Math-Tests' with: [ spec requires: #('Buoy-Math-Extensions' 'Dependent-SUnit-Extensions') ]; group: 'Tests' with: 'Buoy-Math-Tests' ]