From 10c8a550a5ad62efadc5e886216ec7dd41679582 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 12 Sep 2009 16:33:44 +0000 Subject: extra commas removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/open-uri/test_open-uri.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb index 7eb249e91..24e92b379 100644 --- a/test/open-uri/test_open-uri.rb +++ b/test/open-uri/test_open-uri.rb @@ -328,7 +328,7 @@ class TestOpenURI < Test::Unit::TestCase 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 @@ class TestOpenURI < Test::Unit::TestCase 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]) -- cgit