summaryrefslogtreecommitdiff
path: root/test/open-uri/test_open-uri.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/open-uri/test_open-uri.rb')
-rw-r--r--test/open-uri/test_open-uri.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb
index 7eb249e914..24e92b3793 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])