From f0873c76133531346a4430012a42334c5d44783d Mon Sep 17 00:00:00 2001 From: imjoseangel Date: Thu, 5 Nov 2020 09:33:37 +0100 Subject: [PATCH] Add both vuln and Vuln Signed-off-by: imjoseangel --- controls/os_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/controls/os_spec.rb b/controls/os_spec.rb index 1b75020..ec51ade 100644 --- a/controls/os_spec.rb +++ b/controls/os_spec.rb @@ -253,7 +253,8 @@ control 'os-12' do loaded_files.each do |vulnfile| describe file(vulnfile) do - its('content') { should_not match 'vulnerable' } + its(:content) { should_not match 'vulnerable' } + its(:content) { should_not match 'Vulnerable' } end end end