HBASE-19868 TestCoprocessorWhitelistMasterObserver is flakey

Recategorize TestCoprocessorWhitelistMasterObserver as Large test
This commit is contained in:
Peter Somogyi 2018-01-30 11:49:27 +01:00 committed by Michael Stack
parent 67f91f1282
commit 194890b694
No known key found for this signature in database
GPG Key ID: 9816C7FC8ACC93D2
1 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.coprocessor.CoprocessorHost;
import org.apache.hadoop.hbase.coprocessor.RegionCoprocessor;
import org.apache.hadoop.hbase.coprocessor.RegionObserver;
import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.apache.hadoop.hbase.testclassification.LargeTests;
import org.apache.hadoop.hbase.testclassification.SecurityTests;
import org.apache.hadoop.hbase.util.Bytes;
import org.junit.After;
@ -50,9 +50,9 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Performs coprocessor loads for variuos paths and malformed strings
* Performs coprocessor loads for various paths and malformed strings
*/
@Category({SecurityTests.class, MediumTests.class})
@Category({SecurityTests.class, LargeTests.class})
public class TestCoprocessorWhitelistMasterObserver extends SecureTestUtil {
@ClassRule