From: Francis Dupont Date: Wed, 20 Mar 2019 15:23:05 +0000 (+0100) Subject: [531-improve-postgresql-unit-test-time-by-implementing-a-wipe-data-only-mechanism... X-Git-Tag: Kea-1.6.0-beta~352^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aeede66704d873da114bbec0fe70c1e96d5a097a;p=thirdparty%2Fkea.git [531-improve-postgresql-unit-test-time-by-implementing-a-wipe-data-only-mechanism] spelling --- diff --git a/src/lib/pgsql/testutils/pgsql_schema.cc b/src/lib/pgsql/testutils/pgsql_schema.cc index 98c82b7715..7d6e5dfe66 100644 --- a/src/lib/pgsql/testutils/pgsql_schema.cc +++ b/src/lib/pgsql/testutils/pgsql_schema.cc @@ -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); }