aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-14 01:19:12 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-14 01:19:12 +0000
commit62e67609b694000cfdb5b80152d3c48a90cfb79b (patch)
tree292ccf44d20a323756f2e264e273a2448efcb8a1
parent1f4c792072b0f53d084abe7601ef5e371b4a1019 (diff)
downloadruby-62e67609b694000cfdb5b80152d3c48a90cfb79b.tar.gz
* enumerator.c: Fix size for Enumerator::Lazy#flat_map
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--enumerator.c2
-rw-r--r--test/ruby/test_lazy_enumerator.rb4
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f3cf4d3c5e..d91122dc6c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Jan 14 10:18:56 2013 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
+
+ * enumerator.c: Fix size for Enumerator::Lazy#flat_map
+
Mon Jan 14 07:12:52 2013 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* lib/matrix/lup_decomposition: Fix bugs with LUP Decomposition of
diff --git a/enumerator.c b/enumerator.c
index a4ad915464..d488093ce8 100644
--- a/enumerator.c
+++ b/enumerator.c
@@ -1486,7 +1486,7 @@ lazy_flat_map(VALUE obj)
return lazy_set_method(rb_block_call(rb_cLazy, id_new, 1, &obj,
lazy_flat_map_func, 0),
- Qnil, lazy_receiver_size);
+ Qnil, 0);
}
static VALUE
diff --git a/test/ruby/test_lazy_enumerator.rb b/test/ruby/test_lazy_enumerator.rb
index 232e0fed3a..7576c942a5 100644
--- a/test/ruby/test_lazy_enumerator.rb
+++ b/test/ruby/test_lazy_enumerator.rb
@@ -329,11 +329,11 @@ EOS
lazy = [1, 2, 3].lazy
assert_equal 3, lazy.size
assert_equal 42, Enumerator.new(42){}.lazy.size
- %i[map collect flat_map collect_concat].each do |m|
+ %i[map collect].each do |m|
assert_equal 3, lazy.send(m){}.size
end
assert_equal 3, lazy.zip([4]).size
- %i[select find_all reject take_while drop_while].each do |m|
+ %i[flat_map collect_concat select find_all reject take_while drop_while].each do |m|
assert_equal nil, lazy.send(m){}.size
end
assert_equal nil, lazy.grep(//).size