Fixing missing "|| false" in BATS assertion

This commit is contained in:
Jason Fulghum
2023-06-09 12:43:28 -07:00
parent 549d6d3abd
commit ff08487763
+1 -1
View File
@@ -75,7 +75,7 @@ teardown() {
run dolt --user=new_user sql -q "select user from mysql.user"
[ "$status" -eq 1 ]
[[ "$output" =~ "command denied to user" ]]
[[ "$output" =~ "command denied to user" ]] || false
rm -rf .doltcfg
}