From e14aef104031f86a2d13398c9c0953525ef4984d Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Tue, 1 Nov 2022 18:10:28 -0600 Subject: [PATCH] Fix core test --- src/core/tests/test_models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/tests/test_models.py b/src/core/tests/test_models.py index 841f14f..d3df44f 100644 --- a/src/core/tests/test_models.py +++ b/src/core/tests/test_models.py @@ -23,10 +23,10 @@ class ProductModelTest(TestCase): Product.objects.create( name='Pantomime', subtitle='Very Dark French Roast', - description='Our darkest drip. A blend of five different beans roasted two ways. Organic Africa, Indonesia, and South and Central America.', - sku='565656', - price=Decimal('15.00'), - weight=Weight(oz=16), + description='Our darkest drip. A blend of five different \ + beans roasted two ways. Organic Africa, Indonesia, and \ + South and Central America.', + checkout_limit=10, visible_in_listings=True, sorting=1, )