aboutsummaryrefslogtreecommitdiffstats
path: root/test/uri
diff options
context:
space:
mode:
Diffstat (limited to 'test/uri')
-rw-r--r--test/uri/test_generic.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/uri/test_generic.rb b/test/uri/test_generic.rb
index b5b1fc1c26..aefd5f63c7 100644
--- a/test/uri/test_generic.rb
+++ b/test/uri/test_generic.rb
@@ -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