aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_lightparser.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-23 21:37:39 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-23 21:37:39 +0000
commitf6327e732fbc8c68dae163401d283924769dee8d (patch)
tree47f2922c8db27b572148164f8de904fa569bd7de /test/rexml/test_lightparser.rb
parentd1c42e4f341e063d3849a3a9e3622b7261735559 (diff)
downloadruby-f6327e732fbc8c68dae163401d283924769dee8d.tar.gz
Suppress warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml/test_lightparser.rb')
-rw-r--r--test/rexml/test_lightparser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rexml/test_lightparser.rb b/test/rexml/test_lightparser.rb
index ee33dc08fd..1728921434 100644
--- a/test/rexml/test_lightparser.rb
+++ b/test/rexml/test_lightparser.rb
@@ -7,6 +7,6 @@ class LightParserTester < Test::Unit::TestCase
def test_parsing
f = File.new(fixture_path("documentation.xml"))
parser = REXML::Parsers::LightParser.new( f )
- root = parser.parse
+ parser.parse
end
end