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:
David Alexander 2018-03-14 11:21:49 -04:00 committed by Jared Quick
parent a48aea53c5
commit afb931c4da

View file

@ -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