Utils/Termlib: Extend the completion API
[senf.git] / PPI / Connectors.test.cc
index 2e599ba..20b7e3e 100644 (file)
@@ -21,7 +21,7 @@
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 /** \file
-    \brief Connectors.test unit tests */
+    \brief Connectors unit tests */
 
 //#include "Connectors.test.hh"
 //#include "Connectors.test.ih"
@@ -402,22 +402,22 @@ BOOST_AUTO_UNIT_TEST(connectorTest)
     {
         TypedPassiveInput<> input;
         TypedActiveOutput<> output;
-        BOOST_CHECK_NO_THROW( ppi::connect(output, input) );
+        SENF_CHECK_NO_THROW( ppi::connect(output, input) );
     }
     { 
         TypedPassiveInput<> input;
         debug::ActiveSource output;
-        BOOST_CHECK_NO_THROW( ppi::connect(output, input) );
+        SENF_CHECK_NO_THROW( ppi::connect(output, input) );
     }
     {
         debug::ActiveSink input;
         TypedPassiveOutput<> output;
-        BOOST_CHECK_NO_THROW( ppi::connect(output, input) );
+        SENF_CHECK_NO_THROW( ppi::connect(output, input) );
     }
     {
         debug::ActiveSink input;
         debug::PassiveSource output;
-        BOOST_CHECK_NO_THROW( ppi::connect(output, input) );
+        SENF_CHECK_NO_THROW( ppi::connect(output, input) );
     }
 }