BIND 10 trac2375-r1, updated. 00256ac162e5d142268d09d20c569109c2197b22 [2375] a few trivial comment updates (fixing copy-paste errors)
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Nov 26 07:40:22 UTC 2012
The branch, trac2375-r1 has been updated
via 00256ac162e5d142268d09d20c569109c2197b22 (commit)
from d25ef0869fccbb9d07644c80d369a31376dba6d0 (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 00256ac162e5d142268d09d20c569109c2197b22
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Mon Nov 26 16:40:01 2012 +0900
[2375] a few trivial comment updates (fixing copy-paste errors)
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/tests/master_lexer_unittest.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/tests/master_lexer_unittest.cc b/src/lib/dns/tests/master_lexer_unittest.cc
index 7bdc76f..eca6a73 100644
--- a/src/lib/dns/tests/master_lexer_unittest.cc
+++ b/src/lib/dns/tests/master_lexer_unittest.cc
@@ -185,13 +185,13 @@ TEST_F(MasterLexerTest, getUnbalancedParen) {
EXPECT_EQ(MasterLexer::Token::END_OF_FILE, lexer.getNextToken().getType());
}
-// Check we properly return error when there's an opened parentheses and no
+// Check we properly return error when there's an opened quoted string and no
// closing one
TEST_F(MasterLexerTest, getUnbalancedString) {
ss << "\"string";
lexer.pushSource(ss);
- // Then an unbalanced parenthesis
+ // Then an unbalanced qstring (reported as an unexpected end)
EXPECT_EQ(MasterLexer::Token::UNEXPECTED_END,
lexer.getNextToken(MasterLexer::QSTRING).getErrorCode());
// And then EOF
More information about the bind10-changes
mailing list