mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Fixes '
not allowed to be nested in a single-quoted string (#2816)
Obvious fix, but just in case... Signed-off-by: David Alexander <opensource@thelonelyghost.com>
This commit is contained in:
parent
a48aea53c5
commit
afb931c4da
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ The following test shows how to audit machines running PostgreSQL to ensure that
|
|||
```ruby
|
||||
control 'postgres-7' do
|
||||
impact 1.0
|
||||
title 'Don't allow empty passwords'
|
||||
title "Don't allow empty passwords"
|
||||
describe postgres_session('user', 'pass').query("SELECT * FROM pg_shadow WHERE passwd IS NULL;") do
|
||||
its('output') { should eq('') }
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue