HBASE-4764 naming errors for TestHLogUtils and SoftValueSortedMapTest

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1202046 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-11-15 05:18:19 +00:00
parent eaada4b531
commit dd9c07f1c9
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ import org.apache.hadoop.hbase.executor.ExecutorService;
import org.apache.hadoop.hbase.master.MasterServices;
import org.apache.hadoop.hbase.regionserver.HRegion;
import org.apache.hadoop.hbase.regionserver.HRegionServer;
import org.apache.hadoop.hbase.regionserver.wal.TestHLogUtils;
import org.apache.hadoop.hbase.regionserver.wal.HLogUtilsForTests;
import org.apache.hadoop.hbase.InvalidFamilyOperationException;
import org.apache.hadoop.hbase.util.Bytes;
import org.junit.AfterClass;
@ -1313,7 +1313,7 @@ public class TestAdmin {
byte[] value = Bytes.toBytes(v.toString());
HRegionServer regionServer = startAndWriteData("TestLogRolling", value);
LOG.info("after writing there are "
+ TestHLogUtils.getNumLogFiles(regionServer.getWAL()) + " log files");
+ HLogUtilsForTests.getNumLogFiles(regionServer.getWAL()) + " log files");
// flush all regions
@ -1323,7 +1323,7 @@ public class TestAdmin {
r.flushcache();
}
admin.rollHLogWriter(regionServer.getServerName().getServerName());
int count = TestHLogUtils.getNumLogFiles(regionServer.getWAL());
int count = HLogUtilsForTests.getNumLogFiles(regionServer.getWAL());
LOG.info("after flushing all regions and rolling logs there are " +
count + " log files");
assertTrue(("actual count: " + count), count <= 2);