MM-21520: Remove temporary databases after tests run (#13572)

* MM-21520: Remove temorary databases after tests run

* accidental test name change

Co-authored-by: mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Patryk Pomykalski
2020-01-13 16:54:07 +01:00
коммит произвёл Jesús Espino
родитель 0361e8b97e
Коммит 5f7ca55b13
3 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@@ -91,6 +91,9 @@ func tearDownStores() {
if st.Store != nil {
st.Store.Close()
}
if st.SqlSettings != nil {
storetest.CleanupSqlSettings(st.SqlSettings)
}
wg.Done()
}()
}

Просмотреть файл

@@ -90,6 +90,9 @@ func tearDownStores() {
if st.Store != nil {
st.Store.Close()
}
if st.SqlSettings != nil {
storetest.CleanupSqlSettings(st.SqlSettings)
}
wg.Done()
}()
}