Skip to content

Commit b8b9c88

Browse files
committed
fix: add required spaces after ! in test scripts
1 parent 944f4b9 commit b8b9c88

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test-rollback-complete-fixed.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ phase2_rollback_execution() {
332332

333333
# Step 1: Stop all services
334334
log_step "Stopping all services..."
335-
if !../devstack stop; then
335+
if ! ../devstack stop; then
336336
log_fail "Failed to stop services"
337337
capture_diagnostics
338338
return 1
@@ -650,7 +650,7 @@ phase4_remigrate_to_approle() {
650650

651651
log_step "Starting services with AppRole..."
652652
# FIX #2: Remove invalid --profile flag
653-
if !../devstack start; then
653+
if ! ../devstack start; then
654654
log_fail "Failed to start services"
655655
return 1
656656
fi

tests/test-rollback-procedures-fixed.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ phase2_rollback_execution() {
264264

265265
# Step 1: Stop all services
266266
log_step "Stopping all services..."
267-
if !../devstack stop; then
267+
if ! ../devstack stop; then
268268
log_fail "Failed to stop services"
269269
return 1
270270
fi

0 commit comments

Comments
 (0)