Commit fe88693a458e8a59beecf64b386e7fc80ddde4fc

Authored by Leandro Santos
1 parent f7f1b042
Exists in staging and in 1 other branch production

remove puts

Showing 1 changed file with 0 additions and 1 deletions   Show diff stats
test/api/articles_test.rb
@@ -192,7 +192,6 @@ class ArticlesTest < ActiveSupport::TestCase @@ -192,7 +192,6 @@ class ArticlesTest < ActiveSupport::TestCase
192 article = fast_create(Article, :profile_id => @person.id, :name => "Some thing", :archived => true) 192 article = fast_create(Article, :profile_id => @person.id, :name => "Some thing", :archived => true)
193 @params[:value] = 1 193 @params[:value] = 1
194 post "/api/v1/articles/#{article.id}/vote?#{params.to_query}" 194 post "/api/v1/articles/#{article.id}/vote?#{params.to_query}"
195 - puts JSON.parse(last_response.body)  
196 assert_equal 400, last_response.status 195 assert_equal 400, last_response.status
197 end 196 end
198 197