You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2010/12/09 04:21:22 UTC

svn commit: r1043831 - in /activemq/activemq-apollo/trunk: apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/ apollo-dto/src/main/java/org/apache/activemq/apollo/dto/

Author: chirino
Date: Thu Dec  9 03:21:22 2010
New Revision: 1043831

URL: http://svn.apache.org/viewvc?rev=1043831&view=rev
Log:
Fixing failing test.

Removed:
    activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/DurableSubscriptionBindingDTO.java
    activemq/activemq-apollo/trunk/apollo-dto/src/main/java/org/apache/activemq/apollo/dto/PointToPointBindingDTO.java
Modified:
    activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/DestinationConfigurationTest.scala

Modified: activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/DestinationConfigurationTest.scala
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/DestinationConfigurationTest.scala?rev=1043831&r1=1043830&r2=1043831&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/DestinationConfigurationTest.scala (original)
+++ activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/DestinationConfigurationTest.scala Thu Dec  9 03:21:22 2010
@@ -19,7 +19,7 @@ package org.apache.activemq.apollo.broke
 import org.fusesource.hawtbuf.Buffer._
 import scala.util.continuations._
 import org.apache.activemq.apollo.util.{ServiceControl, FunSuiteSupport}
-import org.apache.activemq.apollo.dto.{BindingDTO, DurableSubscriptionBindingDTO, PointToPointBindingDTO}
+import org.apache.activemq.apollo.dto._
 
 /**
  * <p>
@@ -61,12 +61,12 @@ class DestinationConfigurationTest exten
     }
 
     check_tune_queue_buffer(333) {
-      var p = new PointToPointBindingDTO()
+      var p = new QueueBindingDTO()
       p.destination = "unified.a"
       p
     }
     check_tune_queue_buffer(444) {
-      val p = new DurableSubscriptionBindingDTO()
+      val p = new SubscriptionBindingDTO()
       p.destination = "unified.b"
       p.client_id = "a"
       p.subscription_id = "b"
@@ -74,7 +74,7 @@ class DestinationConfigurationTest exten
     }
 
     check_tune_queue_buffer(111) {
-      var p = new PointToPointBindingDTO()
+      var p = new QueueBindingDTO()
       p.destination = "notunified.other"
       p
     }