BIND 10 trac2835, updated. 7f62c19c5d561e755570b8aeab625dd275ecae3a [2835] style fix: name variables with lower+_ per convention

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Mar 27 05:44:20 UTC 2013


The branch, trac2835 has been updated
       via  7f62c19c5d561e755570b8aeab625dd275ecae3a (commit)
      from  4c90b6cf817c2087052ea8b22e91a3b7f8ae39f0 (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 7f62c19c5d561e755570b8aeab625dd275ecae3a
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Tue Mar 26 22:43:55 2013 -0700

    [2835] style fix: name variables with lower+_ per convention

-----------------------------------------------------------------------

Summary of changes:
 src/lib/datasrc/tests/client_list_unittest.cc |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/tests/client_list_unittest.cc b/src/lib/datasrc/tests/client_list_unittest.cc
index b7cdfc2..821b24f 100644
--- a/src/lib/datasrc/tests/client_list_unittest.cc
+++ b/src/lib/datasrc/tests/client_list_unittest.cc
@@ -1169,11 +1169,10 @@ TEST(DataSourceStatus, status) {
     EXPECT_EQ("Test", status.getName());
     EXPECT_EQ(SEGMENT_INUSE, status.getSegmentState());
     EXPECT_EQ("local", status.getSegmentType());
-    const DataSourceStatus statusUnused("Unused", SEGMENT_UNUSED,
-                                        "");
-    EXPECT_EQ("Unused", statusUnused.getName());
-    EXPECT_EQ(SEGMENT_UNUSED, statusUnused.getSegmentState());
-    EXPECT_THROW(statusUnused.getSegmentType(), isc::InvalidOperation);
+    const DataSourceStatus status_unused("Unused", SEGMENT_UNUSED, "");
+    EXPECT_EQ("Unused", status_unused.getName());
+    EXPECT_EQ(SEGMENT_UNUSED, status_unused.getSegmentState());
+    EXPECT_THROW(status_unused.getSegmentType(), isc::InvalidOperation);
 }
 
 }



More information about the bind10-changes mailing list