summaryrefslogtreecommitdiff
path: root/lib/chef/provider/template/content.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@opscode.com>2013-03-22 16:01:08 -0700
committerLamont Granquist <lamont@opscode.com>2013-03-22 16:01:08 -0700
commitdb72ae9f28a3eaf27c8e8af5815f7b030186ef07 (patch)
tree055e49530c404d70ac4b998999630797722ef0dc /lib/chef/provider/template/content.rb
parent675e0c7cca37a32189fd00cdf421363c7d0d2f46 (diff)
downloadchef-db72ae9f28a3eaf27c8e8af5815f7b030186ef07.tar.gz
more spec test work
Diffstat (limited to 'lib/chef/provider/template/content.rb')
-rw-r--r--lib/chef/provider/template/content.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/provider/template/content.rb b/lib/chef/provider/template/content.rb
index e03fca20bf..1d9b33fdb9 100644
--- a/lib/chef/provider/template/content.rb
+++ b/lib/chef/provider/template/content.rb
@@ -28,8 +28,8 @@ class Chef
def template_location
@template_file_cache_location ||= begin
- template_finder.find(@new_resource.source, :local => @new_resource.local, :cookbook => @new_resource.cookbook)
- end
+ template_finder.find(@new_resource.source, :local => @new_resource.local, :cookbook => @new_resource.cookbook)
+ end
end
private
@@ -46,8 +46,8 @@ class Chef
def template_finder
@template_finder ||= begin
- TemplateFinder.new(run_context, @new_resource.cookbook_name, @run_context.node)
- end
+ TemplateFinder.new(run_context, @new_resource.cookbook_name, @run_context.node)
+ end
end
end
end