Skip to content

Commit 16c775b

Browse files
committed
Fix ArrayTest dependency on test order
1 parent eb2ca09 commit 16c775b

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/test/java/com/laytonsmith/testing/ArrayTest.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import static com.laytonsmith.testing.StaticTest.SRun;
77
import static org.junit.Assert.assertEquals;
88
import org.junit.Before;
9-
import org.junit.BeforeClass;
109
import org.junit.Test;
1110
import org.mockito.InOrder;
1211
import static org.mockito.Mockito.inOrder;
@@ -18,18 +17,13 @@
1817
*
1918
*
2019
*/
21-
public class ArrayTest {
20+
public class ArrayTest extends AbstractIntegrationTest {
2221

2322
MCPlayer fakePlayer;
2423

2524
public ArrayTest() {
2625
}
2726

28-
@BeforeClass
29-
public static void setUpClass() {
30-
31-
}
32-
3327
@Before
3428
public void setUp() {
3529
fakePlayer = StaticTest.GetOnlinePlayer();

0 commit comments

Comments
 (0)