We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c62286 commit 6474065Copy full SHA for 6474065
default/serverspec/postgresql_spec.rb
@@ -112,11 +112,11 @@
112
end
113
114
describe file(hba_config_file) do
115
- its(:content) { should match(/host\s.*?all\s.*?all\s.*?127.0.0.1\/32\s.*?md5/) }
+ its(:content) { should match(%r{/host\s.*?all\s.*?all\s.*?127.0.0.1\/32\s.*?md5/}) }
116
117
118
119
- its(:content) { should match(/host\s.*?all\s.*?all\s.*?::1\/128\s.*?md5/) }
+ its(:content) { should match(%r{/host\s.*?all\s.*?all\s.*?::1\/128\s.*?md5/}) }
120
121
122
0 commit comments