HBASE-19911 Convert some tests from small to medium because they are timing out: TestNettyRpcServer, TestClientClusterStatus; ADDENDUM changes TestCheckTestClasses to be medium sized test

This commit is contained in:
Michael Stack 2018-01-31 20:27:34 -08:00
parent ba265a7e51
commit 4c210eb212
1 changed files with 4 additions and 2 deletions

View File

@ -20,8 +20,10 @@ package org.apache.hadoop.hbase;
import static org.junit.Assert.assertTrue;
import java.util.List;
import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.apache.hadoop.hbase.testclassification.MiscTests;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@ -29,7 +31,7 @@ import org.junit.experimental.categories.Category;
/**
* Checks tests are categorized.
*/
@Category({MiscTests.class, SmallTests.class})
@Category({MiscTests.class, MediumTests.class})
public class TestCheckTestClasses {
@ClassRule