Skip to content

Commit bbc31ca

Browse files
committed
fix database
Signed-off-by: Julio Jimenez <julio@clickhouse.com>
1 parent 7929f27 commit bbc31ca

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/simple.bats

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,13 +697,15 @@ EOF
697697
# Test 77: sanitize_database_name rejects name with starting with number
698698
@test "sanitize_database_name rejects name starting with number" {
699699
run sanitize_database_name "1test_database"
700+
echo "$output"
700701
[ "$status" -eq 1 ]
701702
[[ "$output" == "test_database" ]]
702703
}
703704

704705
# Test 78: sanitize_database_name rejects name with spaces
705706
@test "sanitize_database_name rejects name with spaces" {
706707
run sanitize_database_name "test database"
708+
echo "$output"
707709
[ "$status" -eq 1 ]
708710
[[ "$output" == "testdatabase" ]]
709711
}

0 commit comments

Comments
 (0)