File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
test/integration/default/controls Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,4 @@ Metrics/LineLength:
77 # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
88 Max : 88
99
10- # libvirt-formula overredies
11- Lint/AmbiguousRegexpLiteral :
12- # Exclude { should match /<REGEX>/ }
13- Exclude :
14- - ' test/integration/default/controls/config_spec.rb'
15-
1610# Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
Original file line number Diff line number Diff line change 2323
2424 describe libvirt . daemon_config_file do
2525 it { should exist }
26- its ( 'content' ) { should match /This\s file\s is\s managed\s by\s Salt/ }
26+ its ( 'content' ) { should match ( /This\s file\s is\s managed\s by\s Salt/ ) }
2727 end
2828
2929 describe file ( '/etc/libvirt/libvirtd.conf' ) do
3030 it { should exist }
31- its ( 'content' ) { should match /This\s file\s is\s managed\s by\s Salt/ }
31+ its ( 'content' ) { should match ( /This\s file\s is\s managed\s by\s Salt/ ) }
3232 end
3333
3434 parse_options = {
You can’t perform that action at this time.
0 commit comments