RobustIdentifiable implemented and tested + test impacts.
[xmlrouter] / impl / src / test / java / org / wamblee / xmlrouter / impl / RobustDestinationTest.java
index 4ba1609360697b02a68be83e8545c8aebc98f88a..b92e4887430243b30a0103c0434270166408dd14 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.xmlrouter.impl;
 
 import static junit.framework.Assert.*;
@@ -39,7 +39,7 @@ public class RobustDestinationTest {
     @Before
     public void setUp() {
         destination = mock(Destination.class);
-        robust = new RobustDestination(new Id<Destination>(100), destination);
+        robust = new RobustDestination(new Id<Destination>("100"), destination);
         source = mock(DOMSource.class);
     }