HBASE-25667 Remove RSGroup test addition made in parent; depends on functionality not in old branches

This commit is contained in:
stack 2021-03-16 13:17:13 -07:00
parent 2bd712526d
commit 789e0c5a51
1 changed files with 0 additions and 8 deletions

View File

@ -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