spec/support/shared/element/capabilities/with_node.rb in arachni-1.3.2 vs spec/support/shared/element/capabilities/with_node.rb in arachni-1.4

- old
+ new

@@ -7,10 +7,10 @@ describe '#node' do it 'returns the set node' do node = with_node.node expect(node.is_a?( Nokogiri::XML::Element )).to be_truthy - expect(node.to_s).to eq(Nokogiri::HTML.fragment( with_node.source ).to_s) + expect(node.to_s).to eq(Nokogiri::HTML.fragment( with_node.source.dup ).to_s) end end describe '#dup' do let(:dupped) { with_node.dup }