You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2016/06/11 04:55:52 UTC

[06/50] hbase git commit: HBASE-15923 Shell rows counter test fails

HBASE-15923 Shell rows counter test fails


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/015f2ef6
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/015f2ef6
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/015f2ef6

Branch: refs/heads/hbase-12439
Commit: 015f2ef6292df52270df8845ccd244a97deb9c98
Parents: 73ec338
Author: tedyu <yu...@gmail.com>
Authored: Tue May 31 14:21:32 2016 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Tue May 31 14:21:32 2016 -0700

----------------------------------------------------------------------
 hbase-shell/src/test/ruby/hbase/table_test.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/015f2ef6/hbase-shell/src/test/ruby/hbase/table_test.rb
----------------------------------------------------------------------
diff --git a/hbase-shell/src/test/ruby/hbase/table_test.rb b/hbase-shell/src/test/ruby/hbase/table_test.rb
index d4547b7..a617bc5 100644
--- a/hbase-shell/src/test/ruby/hbase/table_test.rb
+++ b/hbase-shell/src/test/ruby/hbase/table_test.rb
@@ -561,7 +561,7 @@ module Hbase
     define_test "scan with a block should yield rows and return rows counter" do
       rows = {}
       res = @test_table._scan_internal { |row, cells| rows[row] = cells }
-      assert_equal(rows.keys.size, res)
+      assert_equal([rows.keys.size,false], res)
     end
     
     define_test "scan should support COLUMNS with value CONVERTER information" do