aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_lightparser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rexml/test_lightparser.rb')
-rw-r--r--test/rexml/test_lightparser.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/rexml/test_lightparser.rb b/test/rexml/test_lightparser.rb
index e0d44231c6..ee33dc08fd 100644
--- a/test/rexml/test_lightparser.rb
+++ b/test/rexml/test_lightparser.rb
@@ -3,10 +3,10 @@ require 'rexml/parsers/lightparser'
class LightParserTester < Test::Unit::TestCase
include REXMLTestUtils
- include REXML
- def test_parsing
- f = File.new(fixture_path("documentation.xml"))
- parser = REXML::Parsers::LightParser.new( f )
- root = parser.parse
- end
+ include REXML
+ def test_parsing
+ f = File.new(fixture_path("documentation.xml"))
+ parser = REXML::Parsers::LightParser.new( f )
+ root = parser.parse
+ end
end