summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-09-15 11:56:49 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2016-09-15 11:56:49 -0700
commitc7850cfd10b91717db61f7128792cd713db16497 (patch)
treeabaae0484460d67c5cde013c6fb2f2e66555cbc2
parentf67b45e225b45e7f0eb7fc25d3df471ea72a5565 (diff)
downloadchef-c7850cfd10b91717db61f7128792cd713db16497.tar.gz
typofix [ci skip]
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--spec/unit/file_content_management/tempfile_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/file_content_management/tempfile_spec.rb b/spec/unit/file_content_management/tempfile_spec.rb
index 3dd90682a8..b57b1ae8e1 100644
--- a/spec/unit/file_content_management/tempfile_spec.rb
+++ b/spec/unit/file_content_management/tempfile_spec.rb
@@ -87,7 +87,7 @@ describe Chef::FileContentManagement::Tempfile do
expect(subject.send(:tempfile_open)).to be_a(Tempfile)
end
- it "should preserve the extention in the tempfile path" do
+ it "should preserve the extension in the tempfile path" do
subject = tempfile_object_for_path("/foo/bar/new_file.html.erb")
tempfile = subject.send(:tempfile_open)
expect(tempfile.path).to match(/chef-new_file.*\.html\.erb$/)