You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/06/03 00:26:15 UTC

svn commit: r950798 - /activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQConnectionFactoryTest.cpp

Author: tabish
Date: Wed Jun  2 22:26:15 2010
New Revision: 950798

URL: http://svn.apache.org/viewvc?rev=950798&view=rev
Log:
Fix the test to call the correct getClientID method in Connection.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQConnectionFactoryTest.cpp

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQConnectionFactoryTest.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQConnectionFactoryTest.cpp?rev=950798&r1=950797&r2=950798&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQConnectionFactoryTest.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQConnectionFactoryTest.cpp Wed Jun  2 22:26:15 2010
@@ -127,7 +127,7 @@ void ActiveMQConnectionFactoryTest::test
         CPPUNIT_ASSERT( amqConnection != NULL );
         CPPUNIT_ASSERT( username == amqConnection->getUsername() );
         CPPUNIT_ASSERT( password == amqConnection->getPassword() );
-        CPPUNIT_ASSERT( clientId == amqConnection->getClientId() );
+        CPPUNIT_ASSERT( clientId == amqConnection->getClientID() );
 
         return;
     }