]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
fixed compilation
authorRazvan Becheriu <ravan@isc.org>
Tue, 5 Mar 2019 07:04:40 +0000 (09:04 +0200)
committerRazvan Becheriu <ravan@isc.org>
Tue, 5 Mar 2019 07:04:40 +0000 (09:04 +0200)
src/lib/cql/tests/cql_connection_unittest.cc

index a35717db392cf615d0ff6cc0c5158c2a0cfb9c80..6bce88a2ae91e33f2228aabe926bce9045543269 100644 (file)
@@ -60,22 +60,5 @@ TEST(CqlConnection, statementMapHash) {
     ASSERT_EQ(map.size(), 1u);
 }
 
-/// @brief Check anything related to exchange types.
-TEST(CqlConnection, exchangeTypeCoverage) {
-    // Check that const and non-const are supported and both point to the same
-    // exchange type.
-    int i = 1;
-
-    // non-const
-    int* pi = &i;
-    boost::any bi(pi);
-
-    // const
-    int* const cpi = &i;
-    boost::any bci(cpi);
-
-    ASSERT_EQ(exchangeType(bi), exchangeType(bci));
-}
-
 }  // namespace