Skip to content

Commit c209e76

Browse files
committed
Revert lint breaking .positive
Signed-off-by: Spencer Owen <spencer.owen@cdw.com>
1 parent 7aabc4c commit c209e76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controls/account_policies.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
its('MaximumPasswordAge') { should be <= input('maximum_password_age') }
4646
end
4747
describe security_policy do
48-
its('MaximumPasswordAge') { should be.positive? }
48+
its('MaximumPasswordAge') { should be > 0 }
4949
end
5050
end
5151

@@ -178,7 +178,7 @@
178178
its('LockoutBadCount') { should be <= 10 }
179179
end
180180
describe security_policy do
181-
its('LockoutBadCount') { should be.positive? }
181+
its('LockoutBadCount') { should be > 0 }
182182
end
183183
end
184184

0 commit comments

Comments
 (0)