In test cleanup, only delete DB if it exists

Change-Id: Ided15b1ba47ee02ce609284f24cdaa730e851d6d
This commit is contained in:
Corey Bryant 2017-10-25 16:22:07 -04:00
parent d3b2962303
commit 2647ed4daa
1 changed files with 1 additions and 1 deletions

View File

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