Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Fixes Issue #2 by updating two test cases, thanks @aruld
Browse files Browse the repository at this point in the history
  • Loading branch information
Curtis Spencer committed Apr 20, 2012
1 parent f06b4d8 commit 84cba26
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require 'rubygems'
require 'bundler'
require 'rake/testtask'
include Rake::DSL
Expand Down
2 changes: 1 addition & 1 deletion test/right_aws_commands_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_store
obj = @s3.get("s3media","helloworld")
assert_equal "Hello World Man!",obj[:object]

obj = @s3.get("s3media","helloworld", )
obj = @s3.get("s3media","helloworld")
end

def test_large_store
Expand Down
2 changes: 1 addition & 1 deletion test/s3_commands_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_delete
S3Object.delete("something_to_delete","ruby_aws_s3")

assert_raise AWS::S3::NoSuchKey do
should_throw = S3Object.find("something_to_delete","find_bucket")
should_throw = S3Object.find("something_to_delete","ruby_aws_s3")
end
end

Expand Down

0 comments on commit 84cba26

Please sign in to comment.