summaryrefslogtreecommitdiff
path: root/spec/mixlib/authentication/digester_spec.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-07-22 12:23:06 -0700
committerTim Smith <tsmith84@gmail.com>2019-08-06 20:33:17 -0700
commit3f1549cef2a452dbc3b655513e101c3fd8f8cf88 (patch)
tree11debdcd8264d9b5b6194a1559850d16bbcb7e01 /spec/mixlib/authentication/digester_spec.rb
parentfc26f4af81bd3b31dd41fc12ece770a0ced7d42f (diff)
downloadmixlib-authentication-3f1549cef2a452dbc3b655513e101c3fd8f8cf88.tar.gz
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/mixlib/authentication/digester_spec.rb')
-rw-r--r--spec/mixlib/authentication/digester_spec.rb6
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