ruby-changes:13127
From: akr <ko1@a...>
Date: Sun, 13 Sep 2009 01:34:32 +0900 (JST)
Subject: [ruby-changes:13127] Ruby:r24877 (trunk): extra commas removed.
akr 2009-09-13 01:33:44 +0900 (Sun, 13 Sep 2009) New Revision: 24877 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=24877 Log: extra commas removed. Modified files: trunk/test/open-uri/test_open-uri.rb Index: test/open-uri/test_open-uri.rb =================================================================== --- test/open-uri/test_open-uri.rb (revision 24876) +++ test/open-uri/test_open-uri.rb (revision 24877) @@ -328,7 +328,7 @@ progress = [] open("#{url}/data/", :content_length_proc => lambda {|n| length << n }, - :progress_proc => lambda {|n| progress << n }, + :progress_proc => lambda {|n| progress << n } ) {|f| assert_equal(1, length.length) assert_equal(content.length, length[0]) @@ -346,7 +346,7 @@ progress = [] open("#{url}/data/", :content_length_proc => lambda {|n| length << n }, - :progress_proc => lambda {|n| progress << n }, + :progress_proc => lambda {|n| progress << n } ) {|f| assert_equal(1, length.length) assert_equal(nil, length[0]) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/