]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: column
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 15:55:57 +0000 (11:55 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 15:55:57 +0000 (11:55 -0400)
src/lib/dhcpsrv/tests/pgsql_exchange_unittest.cc

index a19afd07b0c7a5948ab9beee3a72342946452236..6f6ba77dc5212bb0668cfc0184f6fc4d3ac3fc37 100644 (file)
@@ -175,7 +175,7 @@ public:
     const std::string& expectedColumnName(int col) {
         if (col < 0 || col >= NUM_BASIC_COLS) {
             isc_throw(BadValue,
-                      "definedColunName: invalid column value" << col);
+                      "definedColumnName: invalid column value" << col);
         }
 
         return (expectedColNames_[col]);
@@ -302,7 +302,7 @@ public:
 #define FETCH_ROWS(a,b) (fetchRows(a,b,__LINE__))
 #define WIPE_ROWS(a) (RUN_SQL(a, "DELETE FROM BASICS", PGRES_COMMAND_OK))
 
-/// @brief Verifies that PgResultSet row and colum meta-data is correct
+/// @brief Verifies that PgResultSet row and column meta-data is correct
 TEST_F(PgSqlBasicsTest, rowColumnBasics) {
     // We fetch the table contents, which at this point should be no rows.
     PgSqlResultPtr r;