fix(rubocop): fix remaining errors manually

This commit is contained in:
Imran Iqbal 2019-10-11 12:52:29 +01:00
parent 37b0c43839
commit b369aa9d40
No known key found for this signature in database
GPG key ID: 6D8629439D2B7819

View file

@ -9,6 +9,10 @@ control 'Postgres command' do
# Can't use `%Q` here due to the `\`
describe command("su - postgres -c 'psql -p" + pg_port + %q( -qtc "\l+ db2"')) do
its(:stdout) { should match(/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/) }
its(:stdout) do
should match(
/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/
)
end
end
end