[Fixed]-Django query created object in tests not working

1👍

You set test_subcategory on stockitem_retailer.product, but you never save stockitem_retailer.product, you only save stockitem_retailer.

Simply add stockitem_retailer.product.save() to save the product.

👤knbk

Leave a comment