In test cleanup, only delete DB if it exists

Change-Id: I3006fa24fb093c071f988260db5393fd4d40cfac
This commit is contained in:
Corey Bryant 2017-10-25 16:20:22 -04:00
parent bfb10ff85d
commit 233e1c204b
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
set -x
sudo mysql -u root << EOF
DROP DATABASE keystone;
DROP DATABASE IF EXISTS keystone;
EOF