HBASE-4737 Addendum removes unnecessary print

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1200138 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-11-10 04:18:42 +00:00
parent f5944d1a72
commit 076030550f
1 changed files with 0 additions and 8 deletions

View File

@ -61,21 +61,14 @@ public class TestSplitTransaction {
private static final byte [] GOOD_SPLIT_ROW = new byte [] {'d', 'd', 'd'};
private static final byte [] CF = HConstants.CATALOG_FAMILY;
static {
System.out.println("AAAA static");
}
@Before public void setup() throws IOException {
System.out.println("AAAA setup");
this.fs = FileSystem.get(TEST_UTIL.getConfiguration());
this.fs.delete(this.testdir, true);
this.wal = new HLog(fs, new Path(this.testdir, "logs"),
new Path(this.testdir, "archive"),
TEST_UTIL.getConfiguration());
System.out.println("AAAA setup createRegion");
this.parent = createRegion(this.testdir, this.wal);
TEST_UTIL.getConfiguration().setBoolean("hbase.testing.nocluster", true);
System.out.println("AAAA setup ends");
}
@After public void teardown() throws IOException {
@ -89,7 +82,6 @@ public class TestSplitTransaction {
}
@Test public void testFailAfterPONR() throws IOException, KeeperException {
System.out.println("AAAA testFailAfterPONR");
final int rowcount = TEST_UTIL.loadRegion(this.parent, CF);
assertTrue(rowcount > 0);
int parentRowCount = countRows(this.parent);