Amend HBASE-12156 TableName cache isn't used for one of valueOf methods; make TestTableName a medium test

This commit is contained in:
Andrew Purtell 2014-10-03 16:58:19 -07:00
parent dbef2bdafe
commit 0c0d7eb241
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ import static org.junit.Assert.assertSame;
import static org.junit.Assert.fail;
import org.apache.hadoop.hbase.testclassification.MiscTests;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.apache.hadoop.hbase.TableName;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@ -38,7 +38,7 @@ import org.junit.runner.Description;
/**
* Returns a {@code byte[]} containing the name of the currently running test method.
*/
@Category({MiscTests.class, SmallTests.class})
@Category({MiscTests.class, MediumTests.class})
public class TestTableName extends TestWatcher {
private TableName tableName;