From 03ed73d298625f0aaa547bb623193c069e2e3bb6 Mon Sep 17 00:00:00 2001 From: MaximilianoTabacman Date: Tue, 30 Jan 2024 19:06:50 -0300 Subject: [PATCH] Adjusted dependencies to allow test to use Kepler SUnit Extensions --- source/BaselineOfSagan/BaselineOfSagan.class.st | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/BaselineOfSagan/BaselineOfSagan.class.st b/source/BaselineOfSagan/BaselineOfSagan.class.st index 32a84c3..63ff02c 100644 --- a/source/BaselineOfSagan/BaselineOfSagan.class.st +++ b/source/BaselineOfSagan/BaselineOfSagan.class.st @@ -38,7 +38,8 @@ BaselineOfSagan >> setUpDependencies: spec [ spec baseline: 'Kepler' with: [ spec repository: 'github://ba-st/Kepler:v6/source' ]; - project: 'Kepler-Core' copyFrom: 'Kepler' with: [ spec loads: 'Core' ]. + project: 'Kepler-Core' copyFrom: 'Kepler' with: [ spec loads: 'Core' ]; + project: 'Kepler-SUnit' copyFrom: 'Kepler' with: [ spec loads: 'Dependent-SUnit-Extensions' ]. spec baseline: 'ObjectPool' with: [ spec repository: 'github://pharo-ide/ObjectPool:v1.0.3' ]; @@ -96,7 +97,7 @@ BaselineOfSagan >> setUpPackages: spec [ spec requires: #( 'Glorp-Core' 'Core' 'ObjectPool-Core' 'Bell-Core' 'Hyperspace-Deployment' ) ]; group: 'RDBMS' with: #( 'Sagan-RDBMS' ). - spec package: 'Sagan-Kepler-Tests' with: [ spec requires: #( 'Sagan-Kepler' ) ]. + spec package: 'Sagan-Kepler-Tests' with: [ spec requires: #( 'Sagan-Kepler' 'Kepler-SUnit' ) ]. spec group: 'PostgreSQL' with: #( 'RDBMS' 'Glorp P3' ). spec group: 'SQLite' with: #( 'RDBMS' 'Glorp SQLite3' ).