Skip to content

Commit adecf86

Browse files
committed
fix check script ports
Signed-off-by: Mary Dickson <mary.dickson@virtru.com>
1 parent 40ba4c2 commit adecf86

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

tests/quickstart.bats

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,17 @@ setup() {
8282

8383
# Port checking tests
8484
@test "check.sh port validation works" {
85-
run bash -c "grep -q 'check_port.*8080' $SCRIPT_DIR/check.sh"
86-
[ "$status" -eq 0 ]
87-
8885
run bash -c "grep -q 'check_port.*8443' $SCRIPT_DIR/check.sh"
8986
[ "$status" -eq 0 ]
9087

9188
run bash -c "grep -q 'check_port.*9443' $SCRIPT_DIR/check.sh"
9289
[ "$status" -eq 0 ]
90+
91+
run bash -c "grep -q 'check_port.*2019' $SCRIPT_DIR/check.sh"
92+
[ "$status" -eq 0 ]
93+
94+
run bash -c "grep -q 'check_port.*5432' $SCRIPT_DIR/check.sh"
95+
[ "$status" -eq 0 ]
9396
}
9497

9598
# Script structure tests

0 commit comments

Comments
 (0)