]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2522] style fix: folded long lines
authorJINMEI Tatuya <jinmei@isc.org>
Sat, 18 May 2013 01:23:04 +0000 (18:23 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Sat, 18 May 2013 01:23:04 +0000 (18:23 -0700)
src/lib/dns/tests/rdata_sshfp_unittest.cc

index d67c9f87f213eedd573dbfa34a7f2655c0c0968f..0117d7db47e887c8aff468d9c5c0c0c7a68b6ff3 100644 (file)
@@ -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));
 }