diff options
author | Mukund Sivaraman <muks@isc.org> | 2013-04-02 07:36:00 +0200 |
---|---|---|
committer | Mukund Sivaraman <muks@isc.org> | 2013-04-02 07:36:00 +0200 |
commit | 61dcaac0cfc5b764e0d5ca144128b1aa7d5a311f (patch) | |
tree | a12e66c2bb6fbd52743a717db7b9954cc334e3d9 | |
parent | [2387] Update test data to be more consistent (diff) | |
download | kea-61dcaac0cfc5b764e0d5ca144128b1aa7d5a311f.tar.xz kea-61dcaac0cfc5b764e0d5ca144128b1aa7d5a311f.zip |
[2387] Remove unused includes
-rw-r--r-- | src/lib/dns/tests/rdata_nsec3_unittest.cc | 2 | ||||
-rw-r--r-- | src/lib/dns/tests/rdata_nsec3param_unittest.cc | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/dns/tests/rdata_nsec3_unittest.cc b/src/lib/dns/tests/rdata_nsec3_unittest.cc index 6ad7adee92..4487e0aab6 100644 --- a/src/lib/dns/tests/rdata_nsec3_unittest.cc +++ b/src/lib/dns/tests/rdata_nsec3_unittest.cc @@ -17,7 +17,6 @@ #include <exceptions/exceptions.h> #include <util/buffer.h> -#include <util/encode/hex.h> #include <dns/exceptions.h> #include <dns/messagerenderer.h> #include <dns/rdata.h> @@ -35,7 +34,6 @@ using namespace std; using namespace isc; using namespace isc::dns; using namespace isc::util; -using namespace isc::util::encode; using namespace isc::dns::rdata; namespace { diff --git a/src/lib/dns/tests/rdata_nsec3param_unittest.cc b/src/lib/dns/tests/rdata_nsec3param_unittest.cc index 2ca5c1e3b5..9abbb2281a 100644 --- a/src/lib/dns/tests/rdata_nsec3param_unittest.cc +++ b/src/lib/dns/tests/rdata_nsec3param_unittest.cc @@ -16,8 +16,6 @@ #include <exceptions/exceptions.h> -#include <util/encode/base32hex.h> -#include <util/encode/hex.h> #include <util/buffer.h> #include <dns/messagerenderer.h> #include <dns/rdata.h> @@ -35,7 +33,6 @@ using namespace std; using namespace isc; using namespace isc::dns; using namespace isc::util; -using namespace isc::util::encode; using namespace isc::dns::rdata; namespace { @@ -96,7 +93,7 @@ TEST_F(Rdata_NSEC3PARAM_Test, fromText) { // Iterations out of range. checkFromText_InvalidText("1 1 65536 D399EAAB"); - // Bad base32 hex sequence + // Bad hex sequence checkFromText_BadValue("1 1 256 D399EAABZOO"); // String instead of number |