From: JINMEI Tatuya Date: Sat, 18 May 2013 01:23:04 +0000 (-0700) Subject: [2522] style fix: folded long lines X-Git-Tag: bind10-1.2.0beta1-release~430^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2b82fc102f6a4f987bf9ba59b05a336dfde8ac4;p=thirdparty%2Fkea.git [2522] style fix: folded long lines --- diff --git a/src/lib/dns/tests/rdata_sshfp_unittest.cc b/src/lib/dns/tests/rdata_sshfp_unittest.cc index d67c9f87f2..0117d7db47 100644 --- a/src/lib/dns/tests/rdata_sshfp_unittest.cc +++ b/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)); }