BIND 10 trac2573, updated. 24e0b47e82d29460f4dabfb66558204db9b3b83d [2573] (minor) Spacing and capitalization fixes
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Jan 17 10:39:32 UTC 2013
The branch, trac2573 has been updated
via 24e0b47e82d29460f4dabfb66558204db9b3b83d (commit)
from 2992f269ed62c67a5fb60ad60c0f7dcd89fba957 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 24e0b47e82d29460f4dabfb66558204db9b3b83d
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Thu Jan 17 11:38:41 2013 +0100
[2573] (minor) Spacing and capitalization fixes
Just comments and style. No functionality or code change.
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/tests/zone_loader_unittest.cc | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/tests/zone_loader_unittest.cc b/src/lib/datasrc/tests/zone_loader_unittest.cc
index 9c7eafd..0be33b1 100644
--- a/src/lib/datasrc/tests/zone_loader_unittest.cc
+++ b/src/lib/datasrc/tests/zone_loader_unittest.cc
@@ -180,7 +180,7 @@ protected:
};
// Use the loader to load an unsigned zone.
-TEST_F(ZoneLoaderTest , copyUnsigned) {
+TEST_F(ZoneLoaderTest, copyUnsigned) {
prepareSource(Name::ROOT_NAME(), "root.zone");
ZoneLoader loader(destination_client_, Name::ROOT_NAME(), source_client_);
// It gets the updater directly in the constructor
@@ -201,7 +201,7 @@ TEST_F(ZoneLoaderTest , copyUnsigned) {
EXPECT_EQ(34, destination_client_.rrsets_.size());
// Check various counters. getRRCount should be identical of the RRs
- // we've seen. progress is still "unknown" in the copy operation.
+ // we've seen. Progress is still "unknown" in the copy operation.
EXPECT_EQ(destination_client_.rrsets_.size(), loader.getRRCount());
EXPECT_EQ(ZoneLoader::PROGRESS_UNKNOWN, loader.getProgress());
@@ -232,7 +232,7 @@ TEST_F(ZoneLoaderTest, copyUnsignedIncremental) {
// Not committed yet, we didn't complete the loading
EXPECT_FALSE(destination_client_.commit_called_);
- // Check we can get intermediate counters. progress is always "unknown"
+ // Check we can get intermediate counters. Progress is always "unknown"
// in case of copy.
EXPECT_EQ(destination_client_.rrsets_.size(), loader.getRRCount());
EXPECT_EQ(ZoneLoader::PROGRESS_UNKNOWN, loader.getProgress());
@@ -361,7 +361,7 @@ TEST_F(ZoneLoaderTest, loadUnsignedIncremental) {
EXPECT_EQ(10, destination_client_.rrsets_.size());
EXPECT_FALSE(destination_client_.commit_called_);
- // Check we can get intermediate counters. expected progress is calculated
+ // Check we can get intermediate counters. Expected progress is calculated
// based on the size of the zone file and the offset to the end of 10th RR
// (subject to future changes to the file, but we assume it's a rare
// event.). This also involves floating point operation, which may
@@ -375,7 +375,7 @@ TEST_F(ZoneLoaderTest, loadUnsignedIncremental) {
EXPECT_EQ(34, destination_client_.rrsets_.size());
EXPECT_TRUE(destination_client_.commit_called_);
- // Counters are updated accordingly. progress should reach 100%.
+ // Counters are updated accordingly. Progress should reach 100%.
EXPECT_EQ(destination_client_.rrsets_.size(), loader.getRRCount());
EXPECT_EQ(100, loader.getProgress());
More information about the bind10-changes
mailing list