From f6327e732fbc8c68dae163401d283924769dee8d Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 23 Jul 2012 21:37:39 +0000 Subject: Suppress warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rexml/test_pullparser.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/rexml/test_pullparser.rb') diff --git a/test/rexml/test_pullparser.rb b/test/rexml/test_pullparser.rb index bfce60f268..03c95642e4 100644 --- a/test/rexml/test_pullparser.rb +++ b/test/rexml/test_pullparser.rb @@ -33,7 +33,7 @@ class PullParserTester < Test::Unit::TestCase source = "" parser = REXML::Parsers::PullParser.new(source) assert_raise(ParseException, "Parsing should have failed") { - results = parser.pull while parser.has_next? + parser.pull while parser.has_next? } end @@ -63,7 +63,7 @@ class PullParserTester < Test::Unit::TestCase def test_peek_unshift source = "" - pp = REXML::Parsers::PullParser.new(source) + REXML::Parsers::PullParser.new(source) # FINISH ME! end -- cgit v1.2.3