def test_update_variants_changed_does_nothing_with_no_attributes(): product_type = MagicMock(spec=ProductType) product_type.variant_attributes.all = Mock(return_value=[]) saved_attributes = [] assert update_variants_names(product_type, saved_attributes) is None