Skip to content

Commit 28e43a9

Browse files
committed
merge revision(s) 41370:
Message is 3rd argument, not 2nd git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent e46c1bc commit 28e43a9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/ruby/test_lazy_enumerator.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,8 @@ def test_size
438438

439439
def test_map_zip
440440
bug7507 = '[ruby-core:50545]'
441-
assert_ruby_status(["-e", "GC.stress = true", "-e", "(1..10).lazy.map{}.zip(){}"], bug7507)
442-
assert_ruby_status(["-e", "GC.stress = true", "-e", "(1..10).lazy.map{}.zip().to_a"], bug7507)
441+
assert_ruby_status(["-e", "GC.stress = true", "-e", "(1..10).lazy.map{}.zip(){}"], "", bug7507)
442+
assert_ruby_status(["-e", "GC.stress = true", "-e", "(1..10).lazy.map{}.zip().to_a"], "", bug7507)
443443
end
444444

445445
def test_require_block

version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "2.0.0"
2-
#define RUBY_RELEASE_DATE "2013-06-18"
3-
#define RUBY_PATCHLEVEL 228
2+
#define RUBY_RELEASE_DATE "2013-06-19"
3+
#define RUBY_PATCHLEVEL 229
44

55
#define RUBY_RELEASE_YEAR 2013
66
#define RUBY_RELEASE_MONTH 6
7-
#define RUBY_RELEASE_DAY 18
7+
#define RUBY_RELEASE_DAY 19
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)