You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2023/03/08 15:24:11 UTC

[hbase] branch master updated: HBASE-27690 Fix a misspell in TestRegionStateStore (#5090)

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 8bdabed85ca HBASE-27690 Fix a misspell in TestRegionStateStore (#5090)
8bdabed85ca is described below

commit 8bdabed85cad0b0e4dc6c724b4174a8b5c7ccc64
Author: tianhang <ta...@gmail.com>
AuthorDate: Wed Mar 8 23:23:50 2023 +0800

    HBASE-27690 Fix a misspell in TestRegionStateStore (#5090)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 .../org/apache/hadoop/hbase/master/assignment/TestRegionStateStore.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRegionStateStore.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRegionStateStore.java
index 0004d7665e7..0e00006251a 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRegionStateStore.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRegionStateStore.java
@@ -215,7 +215,7 @@ public class TestRegionStateStore {
       assertNull(serverCellA);
       assertNull(startCodeCellA);
 
-      Get get2 = new Get(splitA.getRegionName());
+      Get get2 = new Get(splitB.getRegionName());
       Result resultB = meta.get(get2);
       Cell serverCellB = resultB.getColumnLatestCell(HConstants.CATALOG_FAMILY,
         CatalogFamilyFormat.getServerColumn(splitB.getReplicaId()));