fix the build again

This commit is contained in:
Steve Agalloco 2013-03-01 12:33:54 -05:00
parent 19336aff26
commit 72cd097620
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ group :test do
gem 'json', :platforms => :ruby_18
gem 'rspec'
gem 'timecop'
gem 'webmock', '>= 1.10'
gem 'webmock', '>= 1.10.1'
end
gemspec

View file

@ -61,7 +61,7 @@ describe Instapaper::Client::Bookmark do
it "should get the correct resource" do
@client.add_bookmark('http://someurl.com', :title => 'This is the title', :description => 'This is the description')
a_post("bookmarks/add").with(:body => {:url => "http://someurl.com", :title => 'This+is+the+title', :description => 'This+is+the+description' }).
a_post("bookmarks/add").with(:body => {:url => "http://someurl.com", :title => 'This is the title', :description => 'This is the description' }).
should have_been_made
end