summaryrefslogtreecommitdiff
path: root/spec/mixlib/authentication/digester_spec.rb
diff options
context:
space:
mode:
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