Skip to content

Commit

Permalink
[REMJMX-87] Use org.junit.Assert not junit.framework.Assert
Browse files Browse the repository at this point in the history
  • Loading branch information
darranl committed Jun 27, 2014
1 parent cb090be commit 3504c87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/test/java/org/jboss/remotingjmx/AddressTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

package org.jboss.remotingjmx;

import static junit.framework.Assert.assertEquals;
import static org.junit.Assert.assertEquals;
import static org.jboss.remotingjmx.Util.convert;

import java.net.URI;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/jboss/remotingjmx/GetTimeoutTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

package org.jboss.remotingjmx;

import static junit.framework.Assert.assertEquals;
import static org.junit.Assert.assertEquals;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;

import junit.framework.Assert;
import org.junit.Assert;

import org.jboss.remoting3.Channel;
import org.jboss.remotingjmx.ServerMessageInterceptor.Event;
Expand Down

0 comments on commit 3504c87

Please sign in to comment.