File diff eb5dd5903697 → 5debbb2ac82e
registrasion/tests/cart_controller_helper.py
Show inline comments
...
 
@@ -21,6 +21,10 @@ class TestingCartController(CartController):
 
                cart=self.cart,
 
                product=product)
 
            old_quantity = product_item.quantity
 
        except ObjectDoesNotExist:
 
            old_quantity = 0
 
        self.set_quantity(product, old_quantity + quantity)
 

	
 
    def next_cart(self):
 
        self.cart.active = False
 
        self.cart.save()