From 143b981f794ddb1cde3ee6977846e8bd9ecfcb50 Mon Sep 17 00:00:00 2001 From: Casper Bruun Date: Thu, 9 Mar 2017 11:37:09 +0100 Subject: [PATCH] false -> 'absent' --- spec/defines/run_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/defines/run_spec.rb b/spec/defines/run_spec.rb index eb9fd7c86..4dce1eb34 100755 --- a/spec/defines/run_spec.rb +++ b/spec/defines/run_spec.rb @@ -706,7 +706,7 @@ it { should compile.with_all_deps } it { should contain_service('docker-sample').with_ensure(false) } it { should contain_exec("remove container docker-sample").with_command('docker rm -v sample') } - it { should contain_file(initscript).with_ensure(false) } + it { should contain_file(initscript).with_ensure('absent') } end end