From 166189dc25f43be81f22179343fdd80c9f51b081 Mon Sep 17 00:00:00 2001 From: Morgan Haskel Date: Mon, 8 Sep 2014 16:03:22 -0400 Subject: [PATCH] Missed two stderr checks --- spec/acceptance/backup_spec.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec/acceptance/backup_spec.rb b/spec/acceptance/backup_spec.rb index 5440781..156776d 100644 --- a/spec/acceptance/backup_spec.rb +++ b/spec/acceptance/backup_spec.rb @@ -20,7 +20,6 @@ describe 'concat backup parameter' do it 'applies the manifest twice with "Filebucketed" stdout and no stderr' do apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stderr).to eq("") expect(r.stdout).to match(/Filebucketed \/tmp\/concat\/file to puppet with sum 0140c31db86293a1a1e080ce9b91305f/) # sum is for file contents of 'old contents' end apply_manifest(pp, :catch_changes => true) @@ -87,7 +86,6 @@ describe 'concat backup parameter' do it 'applies the manifest twice with no "Filebucketed" stdout and no stderr' do apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stderr).to eq("") expect(r.stdout).to_not match(/Filebucketed/) end apply_manifest(pp, :catch_changes => true)