diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-07-23 21:37:39 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-07-23 21:37:39 +0000 |
commit | f6327e732fbc8c68dae163401d283924769dee8d (patch) | |
tree | 47f2922c8db27b572148164f8de904fa569bd7de /test/rexml/test_pullparser.rb | |
parent | d1c42e4f341e063d3849a3a9e3622b7261735559 (diff) |
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_pullparser.rb')
-rw-r--r-- | test/rexml/test_pullparser.rb | 4 |
1 files changed, 2 insertions, 2 deletions
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 = "<a><b></a>" 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 = "<a><b/></a>" - pp = REXML::Parsers::PullParser.new(source) + REXML::Parsers::PullParser.new(source) # FINISH ME! end |