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:
Todd Lipcon 2010-06-22 22:06:42 +00:00
parent 76c2563c67
commit d53780f528
2 changed files with 2 additions and 1 deletions

View File

@ -407,6 +407,7 @@ Release 0.21.0 - Unreleased
HBASE-2741 HBaseExecutorService needs to be multi-cluster friendly
(Karthik Ranganathan via JD)
HBASE-2769 Fix typo in warning message for HBaseConfiguration
HBASE-2768 Fix teardown order in TestFilter
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable

View File

@ -162,8 +162,8 @@ public class TestFilter extends HBaseTestCase {
}
protected void tearDown() throws Exception {
super.tearDown();
this.region.close();
super.tearDown();
}
public void testNoFilter() throws Exception {