aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 15:15:54 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 15:15:54 +0000
commit36276b6f40fe87aec2883a7641a249002a3bb7a9 (patch)
tree8c4927b2e8e5d151ba606d43ea66ae245f2c005a /test/rexml
parentdc4fa2f22966bb5aba9419cddffe0f5f792bb767 (diff)
downloadruby-36276b6f40fe87aec2883a7641a249002a3bb7a9.tar.gz
Avoid a shadowing warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml')
-rw-r--r--test/rexml/test_core.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rexml/test_core.rb b/test/rexml/test_core.rb
index 41dcec5d34..97aada9104 100644
--- a/test/rexml/test_core.rb
+++ b/test/rexml/test_core.rb
@@ -249,7 +249,7 @@ module REXMLTests
assert_instance_of DocType, doc.doctype
assert_equal doc.version, "1.0"
- doc = File.open(fixture_path("dash.xml")) {|source| Document.new source }
+ doc = File.open(fixture_path("dash.xml")) {|s| Document.new s }
assert_equal "content-2", doc.elements["//content-2"].name
end