(CONT-773) Rubocop Auto Fixes 6-10
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_reboot_required_spec.rb
index 7621872d0890b776d12afbe903938e60b82f2945..f92282278494603a5e7cbcb3f77c0c3a7f26f3ba 100644 (file)
@@ -13,6 +13,7 @@ describe 'apt_reboot_required fact' do
       allow(File).to receive(:file?).and_return(true)
       allow(File).to receive(:file?).once.with('/var/run/reboot-required').and_return(true)
     end
+
     it { is_expected.to eq true }
   end
 
@@ -22,6 +23,7 @@ describe 'apt_reboot_required fact' do
       allow(File).to receive(:file?).and_return(true)
       allow(File).to receive(:file?).once.with('/var/run/reboot-required').and_return(false)
     end
+
     it { is_expected.to eq false }
   end
 end