From 6daff674d9fa9ef87177f02181a904a8dc5b62b3 Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Thu, 2 Jul 2015 23:16:05 +0200 Subject: [PATCH] Use "parse" instead of "parse_xml" --- spec/oga/xpath/compiler_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/oga/xpath/compiler_spec.rb b/spec/oga/xpath/compiler_spec.rb index 61e6218..18b8a22 100644 --- a/spec/oga/xpath/compiler_spec.rb +++ b/spec/oga/xpath/compiler_spec.rb @@ -27,7 +27,7 @@ describe Oga::XPath::Compiler do describe 'calling the compiled Proc' do it 'returns a NodeSet' do - doc = parse_xml('') + doc = parse('') ast = parse_xpath('foo') block = @compiler.compile(ast)