]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3692] Corrected spell errors in allocation engine unit tests.
authorMarcin Siodelski <marcin@isc.org>
Tue, 3 Feb 2015 11:26:35 +0000 (12:26 +0100)
committerMarcin Siodelski <marcin@isc.org>
Tue, 3 Feb 2015 11:26:35 +0000 (12:26 +0100)
src/lib/dhcpsrv/tests/alloc_engine_unittest.cc

index fd8bc188637ace3dd08f4c8f2e0d020535104614..d2c16611e9a57314fcea81d1a31410336f6cca49 100644 (file)
@@ -339,11 +339,11 @@ public:
     /// @brief checks if bogus hint can be ignored and the allocation succeeds
     ///
     /// This test checks if the allocation with a hing that is out of the blue
-    /// can succeed. The invalid hint should be ingored completely.
+    /// can succeed. The invalid hint should be ignored completely.
     ///
     /// @param type Lease type
     /// @param hint hint (as send by a client)
-    /// @param expectd_pd_len (used in validation)
+    /// @param expected_pd_len (used in validation)
     void allocBogusHint6(Lease::Type type, IOAddress hint,
                          uint8_t expected_pd_len) {
         boost::scoped_ptr<AllocEngine> engine;
@@ -697,7 +697,7 @@ TEST_F(AllocEngine6Test, IterativeAllocatorPrefixStep) {
     // Second pool (just one lease here)
     EXPECT_EQ("2001:db8:1::", alloc.pickAddress(subnet_, duid_, IOAddress("::")).toText());
 
-    // Third pool (256 leases, let's check first and last explictly and the
+    // Third pool (256 leases, let's check first and last explicitly and the
     // rest over in a pool
     EXPECT_EQ("2001:db8:2::", alloc.pickAddress(subnet_, duid_, IOAddress("::")).toText());
     for (int i = 1; i < 255; i++) {