summaryrefslogtreecommitdiff
path: root/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/mixin/enforce_ownership_and_permissions_spec.rb')
-rw-r--r--spec/unit/mixin/enforce_ownership_and_permissions_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb b/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb
index cffb1b941d..fe72d53de5 100644
--- a/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb
+++ b/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb
@@ -56,8 +56,8 @@ describe Chef::Mixin::EnforceOwnershipAndPermissions do
Struct::Passwd.new("root", "x", 0, 0, "root", "/root", "/bin/bash")
end
group_struct = OpenStruct.new(:name => "root", :passwd => "x", :gid => 0)
- Etc.stub!(:getpwuid).and_return(passwd_struct)
- Etc.stub!(:getgrgid).and_return(group_struct)
+ Etc.stub(:getpwuid).and_return(passwd_struct)
+ Etc.stub(:getgrgid).and_return(group_struct)
end
it "does not set updated_by_last_action on the new resource" do
@@ -80,8 +80,8 @@ describe Chef::Mixin::EnforceOwnershipAndPermissions do
Struct::Passwd.new("root", "x", 0, 0, "root", "/root", "/bin/bash")
end
group_struct = OpenStruct.new(:name => "root", :passwd => "x", :gid => 0)
- Etc.stub!(:getpwuid).and_return(passwd_struct)
- Etc.stub!(:getgrgid).and_return(group_struct)
+ Etc.stub(:getpwuid).and_return(passwd_struct)
+ Etc.stub(:getgrgid).and_return(group_struct)
end
it "sets updated_by_last_action on the new resource" do