summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-05-07 10:36:32 -0700
committerGitHub <noreply@github.com>2019-05-07 10:36:32 -0700
commit3f39c7eb9a5f0eadf768cc92630744f66242dfa3 (patch)
treee4d9313094f23eb932218d5f028ce33704cba962
parentd502c68ecbfe6ef1e23495ea45fda279cbc38e08 (diff)
parent051b0f846b5160a5bf559ad3168a846e23dc9615 (diff)
downloadchef-3f39c7eb9a5f0eadf768cc92630744f66242dfa3.tar.gz
Merge pull request #8479 from chef/fix_test
Remove purposefully failing test - no longer want to gate releases
-rw-r--r--spec/unit/knife/bootstrap_spec.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/unit/knife/bootstrap_spec.rb b/spec/unit/knife/bootstrap_spec.rb
index 948fc5b574..b8141d496f 100644
--- a/spec/unit/knife/bootstrap_spec.rb
+++ b/spec/unit/knife/bootstrap_spec.rb
@@ -50,10 +50,6 @@ describe Chef::Knife::Bootstrap do
k
end
- it "purposefully fails to prevent Chef Infra from promoting unstable -> current" do
- expect(0).to eq(1)
- end
-
it "fails when LicenseAcceptance fails" do
expect(LicenseAcceptance::Acceptor).to receive(:check_and_persist!).and_raise("foo")
expect { k = Chef::Knife::Bootstrap.new(bootstrap_cli_options) }.to raise_error("foo")