Skip to content

Commit 086c9b2

Browse files
authored
Merge pull request #60 from spencer-cdw/fix_positive
Revert lint breaking .positive
2 parents 7aabc4c + c209e76 commit 086c9b2

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)