summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-11 21:47:41 +0000
committertarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-11 21:47:41 +0000
commitc09d54a46cf1dcfd48bacb751640dca447f33246 (patch)
treeb59a808b76f7d9683d657bff190e518764899634 /test
parent5815bb4471d433f8d21c0cc20e9bcb9dc48fd4f1 (diff)
* test/open-uri/test_open-uri.rb (test_progress, test_progress_chunked):
fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28290 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/open-uri/test_open-uri.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb
index e2578f09b4..14f08ffd98 100644
--- a/test/open-uri/test_open-uri.rb
+++ b/test/open-uri/test_open-uri.rb
@@ -389,7 +389,7 @@ class TestOpenURI < Test::Unit::TestCase
) {|f|
assert_equal(1, length.length)
assert_equal(content.length, length[0])
- assert(progress.length>1,"maybe test is worng")
+ assert(progress.length>1,"maybe test is wrong")
assert(progress.sort == progress,"monotone increasing expected but was\n#{progress.inspect}")
assert_equal(content.length, progress[-1])
assert_equal(content, f.read)