2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[531-improve-postgresql-unit-test-time-by-implementing-a-wipe-data-only-mechanism] spelling

This commit is contained in:
Francis Dupont
2019-03-20 16:23:05 +01:00
parent 4a66841c57
commit aeede66704

View File

@@ -32,7 +32,7 @@ validPgSQLConnectionString() {
}
void destroyPgSQLSchema(bool show_err, bool force) {
// If force is true or wipePgSQLData() fails, destory the schema.
// If force is true or wipePgSQLData() fails, destroy the schema.
if (force || (!softWipeEnabled()) || wipePgSQLData(show_err)) {
runPgSQLScript(DATABASE_SCRIPTS_DIR, "pgsql/dhcpdb_drop.pgsql", show_err);
}