Skip to content

Commit

Permalink
removing debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Pickett committed Oct 28, 2008
1 parent c59508c commit 724e1a1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/amazon/cart_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
require File.dirname(__FILE__) + "/../test_helper"

require "ruby-debug"
class Amazon::CartTest < Test::Unit::TestCase

# create a cart to store cart_id and hmac for add, get, modify, and clear tests
Expand Down Expand Up @@ -31,7 +30,7 @@ def test_cart_modify
cart_item_id = resp.doc.get_elements_by_tag_name("cartitemid").inner_text
resp = Amazon::Ecs.cart_modify(cart_item_id, @asin, @cart_id, @hmac, 2)
item = resp.first_item
debugger

assert resp.is_valid_request?
assert_equal "2", item.get("quantity")
assert_not_nil resp.doc.get_elements_by_tag_name("purchaseurl").inner_text
Expand Down

0 comments on commit 724e1a1

Please sign in to comment.