diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2018-07-02 11:06:25 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2018-07-02 15:08:18 -0700 |
commit | fb6c052ae6d58db2499cf04ef0595d1e06a4c13c (patch) | |
tree | ba19bdf7066ced1ccc45d45e13eb2df205be7269 /spec | |
parent | f23bc124f577ee628879079754331724593a82a3 (diff) | |
download | chef-fb6c052ae6d58db2499cf04ef0595d1e06a4c13c.tar.gz |
fix Naming/HeredocDelimiterCase
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'spec')
-rw-r--r-- | spec/unit/provider/group/dscl_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/provider/group/dscl_spec.rb b/spec/unit/provider/group/dscl_spec.rb index 4d18a8c2b0..8bd6485740 100644 --- a/spec/unit/provider/group/dscl_spec.rb +++ b/spec/unit/provider/group/dscl_spec.rb @@ -1,6 +1,6 @@ # # Author:: Dreamcat4 (<dreamcat4@gmail.com>) -# Copyright:: Copyright 2009-2016, Chef Software Inc. +# Copyright:: Copyright 2009-2018, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -116,11 +116,11 @@ describe Chef::Provider::Group::Dscl do describe "gid_used?" do before do - allow(@provider).to receive(:safe_dscl).and_return(<<-eos + allow(@provider).to receive(:safe_dscl).and_return(<<-EOS someprogram somethingElse:gid = ( 500 ) - eos + EOS ) end |