From: JINMEI Tatuya Date: Tue, 18 Dec 2012 02:55:13 +0000 (-0800) Subject: [2429] fixed a minor typo in test code X-Git-Tag: bind10-1.0.0-beta-release~16^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=862d60332f64f7bb357cf8f300fd0faf610ef638;p=thirdparty%2Fkea.git [2429] fixed a minor typo in test code --- diff --git a/src/lib/dns/tests/rrttl_unittest.cc b/src/lib/dns/tests/rrttl_unittest.cc index 61d482a06b..240bbc9244 100644 --- a/src/lib/dns/tests/rrttl_unittest.cc +++ b/src/lib/dns/tests/rrttl_unittest.cc @@ -274,7 +274,7 @@ TEST_F(RRTTLTest, gthan) { } TEST_F(RRTTLTest, maxTTL) { - EXPECT_EQ((1 << 31) - 1, RRTTL::MAX()::getValue()); + EXPECT_EQ((1 << 31) - 1, RRTTL::MAX().getValue()); } // test operator<<. We simply confirm it appends the result of toText().