In test cleanup, only delete DB if it exists

Change-Id: I42b0e03b442e88bea8024adac525c82414ac2723
This commit is contained in:
Corey Bryant 2017-10-25 16:21:42 -04:00
parent cb5b8d3e85
commit c1746dc543
1 changed files with 1 additions and 1 deletions

View File

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