Browse Source

a minor editoral cleanup: removed a redundant semi-colon.
going to push without review.

JINMEI Tatuya 14 years ago
parent
commit
dd37e9539f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/auth/tests/query_unittest.cc

+ 1 - 1
src/bin/auth/tests/query_unittest.cc

@@ -351,7 +351,7 @@ TEST_F(QueryTest, noSOA) {
 TEST_F(QueryTest, noMatchZone) {
     // there's a zone in the memory datasource but it doesn't match the qname.
     // should result in REFUSED.
-    Query(memory_datasrc, Name("example.org"), qtype, response).process();;
+    Query(memory_datasrc, Name("example.org"), qtype, response).process();
     EXPECT_EQ(Rcode::REFUSED(), response.getRcode());
 }