Fix apt_has_updates fact not parsing apt-check output correctly
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_updates_spec.rb
index 538466f999e628572501b285016f4ab0f2a1604f..7e9b77f84f695cecb108c9cc9897ea7254d411a6 100644 (file)
@@ -17,7 +17,7 @@ describe 'apt_updates fact' do
       File.stubs(:executable?) # Stub all other calls
       Facter::Util::Resolution.stubs(:exec) # Catch all other calls
       File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
-      Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>/dev/null').returns "14;7"
+      Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "14;7"
     }
     it { should == 14 }
   end