]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[531-improve-postgresql-unit-test-time-by-implementing-a-wipe-data-only-mechanism... 531-improve-postgresql-unit-test-time-by-implementing-a-wipe-data-only-mechanism
authorFrancis Dupont <fdupont@isc.org>
Wed, 20 Mar 2019 15:23:05 +0000 (16:23 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 20 Mar 2019 15:23:05 +0000 (16:23 +0100)
src/lib/pgsql/testutils/pgsql_schema.cc

index 98c82b7715f2c4e3cc57b78d6e6c2d5a46ecf69d..7d6e5dfe66fe867c1b8041fca1499f49eb3f8ccd 100644 (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);
     }