Fix widget test

This commit is contained in:
Raphael Michel
2018-05-27 12:03:06 +02:00
parent 1689925508
commit 9d2d8684b6
+3
View File
@@ -146,6 +146,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
"variations": [], "variations": [],
"id": self.ticket.pk, "id": self.ticket.pk,
"free_price": False, "free_price": False,
"original_price": None,
"name": "Early-bird ticket", "name": "Early-bird ticket",
"order_max": 4 "order_max": 4
}, },
@@ -181,6 +182,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
], ],
"id": self.shirt.pk, "id": self.shirt.pk,
"free_price": False, "free_price": False,
"original_price": None,
"name": "T-Shirt", "name": "T-Shirt",
"order_max": None "order_max": None
} }
@@ -222,6 +224,7 @@ class WidgetCartTest(CartTestMixin, TestCase):
"variations": [], "variations": [],
"id": self.ticket.pk, "id": self.ticket.pk,
"free_price": False, "free_price": False,
"original_price": None,
"name": "Early-bird ticket", "name": "Early-bird ticket",
"order_max": 4 "order_max": 4
}, },