Added missing quote and removed extra bracket (#2386)

Signed-off-by: Andy Boutte <andy.boutte@reancloud.com>
This commit is contained in:
Andy Boutte 2017-12-11 14:07:55 -06:00 committed by Adam Leff
parent a18441f86e
commit ac5ca9b5bc

View file

@ -28,7 +28,7 @@ This file can be queried using:
describe xml('/path/to/name.xml') do describe xml('/path/to/name.xml') do
its('root/name') { should eq ['hello'] } its('root/name') { should eq ['hello'] }
its('root/meta/creator') { should eq ['John Doe'] } its('root/meta/creator') { should eq ['John Doe'] }
its('root/array[2]/element]) { should eq ['two'] } its('root/array[2]/element') { should eq ['two'] }
end end
where where