Revert "HBASE-21242 [amv2] Miscellaneous minor log and assign procedure create improvements; ADDENDUM Fix TestHRegionInfo AND TestRegionInfoDisplay"

This reverts commit 7f3ca4643d2a247b8665dd5e56271a2f52e60f2c.

Bad commit.
This commit is contained in:
Michael Stack 2018-10-12 16:15:57 -07:00
parent 7f3ca4643d
commit 266544370d
No known key found for this signature in database
GPG Key ID: 9816C7FC8ACC93D2
2 changed files with 1 additions and 15 deletions

View File

@ -34,8 +34,6 @@ import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.rules.TestName;
import static org.junit.Assert.assertTrue;
@Category({MasterTests.class, SmallTests.class})
public class TestRegionInfoDisplay {
@ -94,16 +92,7 @@ public class TestRegionInfoDisplay {
origDesc.indexOf(Bytes.toStringBinary(startKey)) +
Bytes.toStringBinary(startKey).length());
assert(firstPart.equals(firstPartOrig));
// The elapsed time may be different in the two Strings since they were calculated at different
// times... so, don't include that portion when we compare. It starts with a '('.
// Second part looks like this:
// ",1539385518431.9d15487c60247dc3876b8b2a842929ed. state=OPEN,
// ts=Fri Oct 12 16:05:18 PDT 2018 (PT0S ago), server=null"
int indexOfElapsedTime = secondPart.indexOf("(");
assertTrue(indexOfElapsedTime > 0);
assertTrue(secondPart + " " + secondPartOrig,
secondPart.substring(0, indexOfElapsedTime).equals(secondPartOrig.
substring(0, indexOfElapsedTime)));
assert(secondPart.equals(secondPartOrig));
}
private void checkEquality(RegionInfo ri, Configuration conf) throws IOException {

View File

@ -296,7 +296,6 @@ public class TestHRegionInfo {
assertEquals(expectedHri, convertedHri);
}
<<<<<<< Updated upstream
@Test
public void testRegionDetailsForDisplay() throws IOException {
byte[] startKey = new byte[] {0x01, 0x01, 0x02, 0x03};
@ -363,7 +362,5 @@ public class TestHRegionInfo {
}
}
}
=======
>>>>>>> Stashed changes
}