From 22162c04ce6c61c74bede5e6ccc3764ce7c7cba1 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Mon, 5 Aug 2024 12:43:16 +0200 Subject: [PATCH] Run test-substitutions with booster-dev --- scripts/booster-integration-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/booster-integration-tests.sh b/scripts/booster-integration-tests.sh index 3a24d3db647..bde164c1954 100755 --- a/scripts/booster-integration-tests.sh +++ b/scripts/booster-integration-tests.sh @@ -28,12 +28,12 @@ for dir in $(ls -d test-*); do name=${dir##test-} echo "Running $name..." case "$name" in - "a-to-f" | "diamond") + "a-to-f" | "diamond" | "substitutions") SERVER=$BOOSTER_DEV ./runDirectoryTest.sh test-$name $@ SERVER=$KORE_RPC_DEV ./runDirectoryTest.sh test-$name $@ SERVER=$KORE_RPC_BOOSTER ./runDirectoryTest.sh test-$name $@ ;; - "substitutions" | "vacuous" | "pathological-add-module") + "vacuous" | "pathological-add-module") SERVER=$KORE_RPC_DEV ./runDirectoryTest.sh test-$name $@ SERVER=$KORE_RPC_BOOSTER ./runDirectoryTest.sh test-$name $@ ;;