diff options
author | Tim Smith <tsmith@chef.io> | 2019-03-18 09:52:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 09:52:21 -0700 |
commit | 7cf3cc364475d4c52bd4672d16a34365873b5dcd (patch) | |
tree | f7b070083911086a6dfb49528a52884c935a0794 /spec/unit | |
parent | 92073aeae333aa97b399090cf8ab7ceb5face006 (diff) | |
parent | fb46ed8de333f035d8f915a8a318f660ac68087a (diff) | |
download | chef-7cf3cc364475d4c52bd4672d16a34365873b5dcd.tar.gz |
Merge pull request #8301 from chef/lcg/early-run-context
Early allocation of the Chef::RunContext
Diffstat (limited to 'spec/unit')
-rw-r--r-- | spec/unit/client_spec.rb | 1 | ||||
-rw-r--r-- | spec/unit/run_context_spec.rb | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/spec/unit/client_spec.rb b/spec/unit/client_spec.rb index 6fb5a7df64..476647a651 100644 --- a/spec/unit/client_spec.rb +++ b/spec/unit/client_spec.rb @@ -102,7 +102,6 @@ shared_context "a client run" do let(:api_client_exists?) { false } let(:enable_fork) { false } - let(:http_data_collector) { double("Chef::ServerAPI (data collector)") } let(:http_cookbook_sync) { double("Chef::ServerAPI (cookbook sync)") } let(:http_node_load) { double("Chef::ServerAPI (node)") } let(:http_node_save) { double("Chef::ServerAPI (node save)") } diff --git a/spec/unit/run_context_spec.rb b/spec/unit/run_context_spec.rb index bfef3f8836..0d66b1f66d 100644 --- a/spec/unit/run_context_spec.rb +++ b/spec/unit/run_context_spec.rb @@ -2,7 +2,7 @@ # Author:: Adam Jacob (<adam@chef.io>) # Author:: Tim Hinderliter (<tim@chef.io>) # Author:: Christopher Walters (<cw@chef.io>) -# Copyright:: Copyright 2008-2016, Chef Software Inc. +# Copyright:: Copyright 2008-2019, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); |