]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5477] Fixed some weird american spelling in database unit tests.
authorMarcin Siodelski <marcin@isc.org>
Thu, 8 Mar 2018 19:14:32 +0000 (20:14 +0100)
committerMarcin Siodelski <marcin@isc.org>
Thu, 8 Mar 2018 19:14:32 +0000 (20:14 +0100)
src/lib/dhcpsrv/tests/database_connection_unittest.cc

index 37fe123530cd8dd27e941adc98a14adac95b16a6..901a825df3520436aa64c21c34e74c3253a1e295 100644 (file)
@@ -13,7 +13,7 @@
 
 using namespace isc::dhcp;
 
-/// @brief Test fixture for excersizing DbLostCallback invocation
+/// @brief Test fixture for exercising DbLostCallback invocation
 class DatabaseConnectionCallbackTest : public ::testing::Test {
 public:
     /// Constructor
@@ -27,7 +27,7 @@ public:
     /// parameters
     bool dbLostCallback(ReconnectCtlPtr db_reconnect_ctl) {
         if (!db_reconnect_ctl) {
-            isc_throw(isc::BadValue, "db_reconnect_ctl should not null");
+            isc_throw(isc::BadValue, "db_reconnect_ctl should not be null");
         }
 
         db_reconnect_ctl_ = db_reconnect_ctl;