Skip to content

Commit 89fa956

Browse files
committed
fix(specs): use boolean operator
1 parent 9044a92 commit 89fa956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/default/controls/services_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
title 'should be running and enabled'
44

55
# single service
6-
if os[:name] == 'centos' and os[:release].start_with?('6')
6+
if os[:name] == 'centos' && os[:release].start_with?('6')
77
describe service("openvpn") do
88
it { should be_enabled }
99
it { should be_running }

0 commit comments

Comments
 (0)