diff options
Diffstat (limited to 'src/bin/d2/tests/nc_remove_unittests.cc')
-rw-r--r-- | src/bin/d2/tests/nc_remove_unittests.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bin/d2/tests/nc_remove_unittests.cc b/src/bin/d2/tests/nc_remove_unittests.cc index 0b8c07f808..d2ee9e4690 100644 --- a/src/bin/d2/tests/nc_remove_unittests.cc +++ b/src/bin/d2/tests/nc_remove_unittests.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -25,7 +25,7 @@ using namespace isc::util; namespace { -/// @brief Test class derived from NameRemoveTransaction to provide visiblity +/// @brief Test class derived from NameRemoveTransaction to provide visibility // to protected methods. class NameRemoveStub : public NameRemoveTransaction { public: @@ -71,7 +71,7 @@ public: /// @brief Prepares the initial D2UpdateMessage /// - /// This method overrides the NameChangeTransactio implementation to + /// This method overrides the NameChangeTransaction implementation to /// provide the ability to simulate an exception throw in the build /// request logic. /// If the one-shot flag, simulate_build_request_exception_ is true, @@ -481,7 +481,7 @@ TEST_F(NameRemoveTransactionTest, selectingFwdServerHandler) { name_remove->getNextEvent()) << " num_servers: " << num_servers << " selections: " << i; - // Post a server IO error event. This simulates an IO error occuring + // Post a server IO error event. This simulates an IO error occurring // and a need to select the new server. ASSERT_NO_THROW(name_remove->postNextEvent(NameChangeTransaction:: SERVER_IO_ERROR_EVT)) @@ -969,7 +969,7 @@ TEST_F(NameRemoveTransactionTest, removingFwdRRsHandler_FqdnNotInUse) { // Run removingFwdRRsHandler again to process the response. EXPECT_NO_THROW(name_remove->removingFwdRRsHandler()); - // Forwad completion flag should be true, reverse should still be false. + // Forward completion flag should be true, reverse should still be false. EXPECT_TRUE(name_remove->getForwardChangeCompleted()); EXPECT_FALSE(name_remove->getReverseChangeCompleted()); @@ -1016,7 +1016,7 @@ TEST_F(NameRemoveTransactionTest, removingFwdRRsHandler_OtherRcode) { EXPECT_FALSE(name_remove->getForwardChangeCompleted()); EXPECT_FALSE(name_remove->getReverseChangeCompleted()); - // We should have failed the transaction. Verifiy that we transitioned + // We should have failed the transaction. Verify that we transitioned // correctly. EXPECT_EQ(NameChangeTransaction::PROCESS_TRANS_FAILED_ST, name_remove->getCurrState()); @@ -1203,7 +1203,7 @@ TEST_F(NameRemoveTransactionTest, selectingRevServerHandler) { name_remove->getNextEvent()) << " num_servers: " << num_servers << " selections: " << i; - // Post a server IO error event. This simulates an IO error occuring + // Post a server IO error event. This simulates an IO error occurring // and a need to select the new server. ASSERT_NO_THROW(name_remove->postNextEvent(NameChangeTransaction:: SERVER_IO_ERROR_EVT)) |