You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2021/03/16 20:34:10 UTC

[hbase] branch branch-2.4 updated: HBASE-25667 Remove RSGroup test addition made in parent; depends on functionality not in old branches

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

stack pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new 789e0c5  HBASE-25667 Remove RSGroup test addition made in parent; depends on functionality not in old branches
789e0c5 is described below

commit 789e0c5a517f4773cb1665bdea2b6bdff5bd577b
Author: stack <st...@apache.org>
AuthorDate: Tue Mar 16 13:17:13 2021 -0700

    HBASE-25667 Remove RSGroup test addition made in parent; depends on functionality not in old branches
---
 hbase-shell/src/test/ruby/shell/rsgroup_shell_test.rb | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/hbase-shell/src/test/ruby/shell/rsgroup_shell_test.rb b/hbase-shell/src/test/ruby/shell/rsgroup_shell_test.rb
index b45d5ad..f7c5300 100644
--- a/hbase-shell/src/test/ruby/shell/rsgroup_shell_test.rb
+++ b/hbase-shell/src/test/ruby/shell/rsgroup_shell_test.rb
@@ -115,16 +115,8 @@ module Hbase
       assert_not_nil(group)
       assert_equal(ns_table_name, group.getTables.iterator.next.toString)
 
-      ns_table_name2 = 'test_namespace:test_ns_table2'
-      @shell.command(:create, ns_table_name2, 'f')
-
-      assert_true(@admin.listTablesInRSGroup(group_name).contains(org.apache.hadoop.hbase.TableName.valueOf(ns_table_name2)))
-      assert_equal(2, @admin.listTablesInRSGroup(group_name).count)
-
       @shell.command(:disable, ns_table_name)
       @shell.command(:drop, ns_table_name)
-      @shell.command(:disable, ns_table_name2)
-      @shell.command(:drop, ns_table_name2)
       @shell.command(:drop_namespace, namespace_name)
       remove_rsgroup(group_name)
     end