HBASE-2768. Fix teardown order in TestFilter
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@957054 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
76c2563c67
commit
d53780f528
|
@ -407,6 +407,7 @@ Release 0.21.0 - Unreleased
|
||||||
HBASE-2741 HBaseExecutorService needs to be multi-cluster friendly
|
HBASE-2741 HBaseExecutorService needs to be multi-cluster friendly
|
||||||
(Karthik Ranganathan via JD)
|
(Karthik Ranganathan via JD)
|
||||||
HBASE-2769 Fix typo in warning message for HBaseConfiguration
|
HBASE-2769 Fix typo in warning message for HBaseConfiguration
|
||||||
|
HBASE-2768 Fix teardown order in TestFilter
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
|
|
@ -162,8 +162,8 @@ public class TestFilter extends HBaseTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void tearDown() throws Exception {
|
protected void tearDown() throws Exception {
|
||||||
super.tearDown();
|
|
||||||
this.region.close();
|
this.region.close();
|
||||||
|
super.tearDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testNoFilter() throws Exception {
|
public void testNoFilter() throws Exception {
|
||||||
|
|
Loading…
Reference in New Issue