1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/uri/test_generic.rb: fix wrong arguments for test case.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46446 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-06-16 09:23:02 +00:00
parent 9761965d05
commit e5af180eb0

View file

@ -126,9 +126,9 @@ class URI::TestGeneric < Test::Unit::TestCase
# 8
# reported by m_seki
uri = URI.parse('file:///foo/bar.txt')
url = URI.parse('file:///foo/bar.txt')
assert_kind_of(URI::Generic, url)
uri = URI.parse('file:/foo/bar.txt')
url = URI.parse('file:/foo/bar.txt')
assert_kind_of(URI::Generic, url)
# 9