Browse Source

[2522] style fix: folded long lines

JINMEI Tatuya 12 years ago
parent
commit
a2b82fc102
1 changed files with 6 additions and 3 deletions
  1. 6 3
      src/lib/dns/tests/rdata_sshfp_unittest.cc

+ 6 - 3
src/lib/dns/tests/rdata_sshfp_unittest.cc

@@ -132,8 +132,10 @@ TEST_F(Rdata_SSHFP_Test, badText) {
     checkFromText_BadString(sshfp_txt + " extra text");
 
     // yes, these are redundant to the last test cases in algorithmTypes
-    checkFromText_InvalidText("2345 1 123456789abcdef67890123456789abcdef67890");
-    checkFromText_InvalidText("2 1234 123456789abcdef67890123456789abcdef67890");
+    checkFromText_InvalidText(
+        "2345 1 123456789abcdef67890123456789abcdef67890");
+    checkFromText_InvalidText(
+        "2 1234 123456789abcdef67890123456789abcdef67890");
 
     // negative values are trapped in the lexer rather than the constructor
     checkFromText_LexerError("-2 1 123456789abcdef67890123456789abcdef67890");
@@ -195,7 +197,8 @@ TEST_F(Rdata_SSHFP_Test, createFromWire) {
 }
 
 TEST_F(Rdata_SSHFP_Test, createFromParams) {
-    const generic::SSHFP rdata_sshfp2(2, 1, "123456789abcdef67890123456789abcdef67890");
+    const generic::SSHFP rdata_sshfp2(
+        2, 1, "123456789abcdef67890123456789abcdef67890");
     EXPECT_EQ(0, rdata_sshfp2.compare(rdata_sshfp));
 }