mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
Added missing quote and removed extra bracket (#2386)
Signed-off-by: Andy Boutte <andy.boutte@reancloud.com>
This commit is contained in:
parent
a18441f86e
commit
ac5ca9b5bc
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ This file can be queried using:
|
|||
describe xml('/path/to/name.xml') do
|
||||
its('root/name') { should eq ['hello'] }
|
||||
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
|
||||
|
||||
where
|
||||
|
|
Loading…
Reference in a new issue