BIND 10 trac2371, updated. 282cb2ff2eb38f9ad46653c55d0d2974ca1df541 [2371] more comment wording adjustments
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Nov 2 22:21:21 UTC 2012
The branch, trac2371 has been updated
via 282cb2ff2eb38f9ad46653c55d0d2974ca1df541 (commit)
from 7a72794ffa529568a9a962a1fa62161dd7f6b906 (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 282cb2ff2eb38f9ad46653c55d0d2974ca1df541
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Nov 2 15:21:07 2012 -0700
[2371] more comment wording adjustments
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/tests/master_lexer_unittest.cc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/tests/master_lexer_unittest.cc b/src/lib/dns/tests/master_lexer_unittest.cc
index 34d9ab7..93fead7 100644
--- a/src/lib/dns/tests/master_lexer_unittest.cc
+++ b/src/lib/dns/tests/master_lexer_unittest.cc
@@ -62,7 +62,7 @@ TEST_F(MasterLexerTest, pushStream) {
// return 1 initially.
EXPECT_EQ(1, lexer.getSourceLine());
- // By closing it the stack will be empty again.
+ // By popping it the stack will be empty again.
lexer.popSource();
checkEmptySource(lexer);
}
@@ -111,7 +111,7 @@ TEST_F(MasterLexerTest, nestedPush) {
lexer.pushSource(TEST_DATA_SRCDIR "/masterload.txt");
EXPECT_EQ(TEST_DATA_SRCDIR "/masterload.txt", lexer.getSourceName());
- // Close works on the "topmost" (last-pushed) source
+ // popSource() works on the "topmost" (last-pushed) source
lexer.popSource();
EXPECT_EQ(expected_stream_name, lexer.getSourceName());
@@ -119,7 +119,7 @@ TEST_F(MasterLexerTest, nestedPush) {
EXPECT_TRUE(lexer.getSourceName().empty());
}
-TEST_F(MasterLexerTest, invalidClose) {
+TEST_F(MasterLexerTest, invalidPop) {
// popSource() cannot be called if the sources stack is empty.
EXPECT_THROW(lexer.popSource(), isc::InvalidOperation);
}
More information about the bind10-changes
mailing list