Merge pull request #214 from baby-gnu/fix/rubocop-system-lib

test(inspec): `system.rb` must call parent class initialisation
This commit is contained in:
Daniel 2020-10-28 10:51:20 +00:00 committed by GitHub
commit 7c85376480
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,7 @@ class SystemResource < Inspec.resource(1)
attr_reader :platform
def initialize
super
@platform = build_platform
end