From: JINMEI Tatuya Date: Fri, 30 Mar 2012 23:43:01 +0000 (-0700) Subject: [1579] editorial cleanups: shortened long lines, indentation consistency. X-Git-Tag: trac2351_base~226^2~116^2~41^2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c31cfdf8449030f874406f4efad754ba7eb786e6;p=thirdparty%2Fkea.git [1579] editorial cleanups: shortened long lines, indentation consistency. --- diff --git a/src/lib/datasrc/tests/database_unittest.cc b/src/lib/datasrc/tests/database_unittest.cc index eeb6643ba9..3c1e892dfd 100644 --- a/src/lib/datasrc/tests/database_unittest.cc +++ b/src/lib/datasrc/tests/database_unittest.cc @@ -2332,7 +2332,7 @@ TYPED_TEST(DatabaseClientTest, dbNegativeCaseFind) { this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_, this->expected_sig_rdatas_, (ZoneFinder::RESULT_WILDCARD | ZoneFinder::RESULT_NSEC_SIGNED), - isc::dns::Name("b.a.wild.example.org"), ZoneFinder::FIND_DNSSEC); + Name("b.a.wild.example.org"), ZoneFinder::FIND_DNSSEC); this->expected_rdatas_.clear(); this->expected_sig_rdatas_.clear(); this->expected_rdatas_.push_back("cancel.here.wild.example.org. A NSEC " @@ -2343,9 +2343,9 @@ TYPED_TEST(DatabaseClientTest, dbNegativeCaseFind) { doFindTest(*finder, isc::dns::Name("b.a.wild.example.org"), isc::dns::RRType::TXT(), isc::dns::RRType::NSEC(), this->rrttl_, ZoneFinder::NXRRSET, this->expected_rdatas_, - this->expected_sig_rdatas_, (ZoneFinder::RESULT_WILDCARD | - ZoneFinder::RESULT_NSEC_SIGNED),Name("*.wild.example.org"), - ZoneFinder::FIND_DNSSEC); + this->expected_sig_rdatas_, + (ZoneFinder::RESULT_WILDCARD | ZoneFinder::RESULT_NSEC_SIGNED), + Name("*.wild.example.org"), ZoneFinder::FIND_DNSSEC); this->updater_ = this->client_->getUpdater(this->zname_, false); this->rrset_.reset(new RRset(this->zname_, this->qclass_, isc::dns::RRType::NSEC3PARAM(), this->rrttl_));