Browse Source

[2370] make MasterLexerTokenTest members protected (not public) by convention

JINMEI Tatuya 12 years ago
parent
commit
e62b641733
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/tests/master_lexer_token_unittest.cc

+ 1 - 1
src/lib/dns/tests/master_lexer_token_unittest.cc

@@ -29,7 +29,7 @@ const char TEST_STRING[] = "string token";
 const size_t TEST_STRING_LEN = sizeof(TEST_STRING) - 1;
 
 class MasterLexerTokenTest : public ::testing::Test {
-public:
+protected:
     MasterLexerTokenTest() :
         token_eof(MasterLexer::Token::END_OF_FILE),
         token_str(TEST_STRING, TEST_STRING_LEN),