diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-07-22 12:23:06 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-08-06 20:33:17 -0700 |
commit | 3f1549cef2a452dbc3b655513e101c3fd8f8cf88 (patch) | |
tree | 11debdcd8264d9b5b6194a1559850d16bbcb7e01 /spec/mixlib | |
parent | fc26f4af81bd3b31dd41fc12ece770a0ced7d42f (diff) | |
download | mixlib-authentication-3f1549cef2a452dbc3b655513e101c3fd8f8cf88.tar.gz |
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/mixlib')
-rw-r--r-- | spec/mixlib/authentication/digester_spec.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/mixlib/authentication/digester_spec.rb b/spec/mixlib/authentication/digester_spec.rb index c54efa5..d094f40 100644 --- a/spec/mixlib/authentication/digester_spec.rb +++ b/spec/mixlib/authentication/digester_spec.rb @@ -27,14 +27,16 @@ describe Mixlib::Authentication::Digester do describe "#hash_file" do it "should default to use SHA1" do expect(described_class.hash_file(StringIO.new(test_string))).to( - eq(test_string_checksum)) + eq(test_string_checksum) + ) end end describe "#hash_string" do it "should default to use SHA1" do expect(described_class.hash_string(test_string)).to( - eq(test_string_checksum)) + eq(test_string_checksum) + ) end end end |