summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/delete_at_spec.rb
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppetlabs.com>2014-02-05 15:06:09 -0800
committerHunter Haugen <hunter@puppetlabs.com>2014-02-05 15:06:09 -0800
commitdacdfaac7ffb4175cf112415886d92f24c12edc7 (patch)
treeb0287e655c51232037602dcd112d3a4a8a53906c /spec/unit/puppet/parser/functions/delete_at_spec.rb
parent5b85e7c39f34b3004881517f886d7f06f8f2a440 (diff)
parenta972e0645b31cf1eb89874cb08b403bdc0fad3a4 (diff)
Merge pull request #218 from mediatemple/remove_trailing_whitespace
Remove trailing whitespace
Diffstat (limited to 'spec/unit/puppet/parser/functions/delete_at_spec.rb')
-rwxr-xr-xspec/unit/puppet/parser/functions/delete_at_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/puppet/parser/functions/delete_at_spec.rb b/spec/unit/puppet/parser/functions/delete_at_spec.rb
index cfc0a29..593cf45 100755
--- a/spec/unit/puppet/parser/functions/delete_at_spec.rb
+++ b/spec/unit/puppet/parser/functions/delete_at_spec.rb
@@ -17,9 +17,9 @@ describe "the delete_at function" do
result.should(eq(['a','c']))
end
- it "should not change origin array passed as argument" do
+ it "should not change origin array passed as argument" do
origin_array = ['a','b','c','d']
result = scope.function_delete_at([origin_array, 1])
origin_array.should(eq(['a','b','c','d']))
- end
+ end
end