diff --git a/app/templates/suppliers_details.html b/app/templates/suppliers_details.html index 99f8409e0..9c5af0bd9 100644 --- a/app/templates/suppliers_details.html +++ b/app/templates/suppliers_details.html @@ -45,12 +45,6 @@
{{ supplier.description }}
- {% if supplier.clients %} -- {{ ", ".join(supplier.clients) }} -
- {% endif %} {% endif %} diff --git a/config.py b/config.py index 656ae5c25..581c9c71d 100644 --- a/config.py +++ b/config.py @@ -86,6 +86,7 @@ class Preview(Config): class Live(Config): DEBUG = False + FEATURE_FLAGS_SUPPLIER_A_TO_Z = enabled_since('2015-07-30') configs = { diff --git a/tests/app/views/test_suppliers.py b/tests/app/views/test_suppliers.py index 0d1e828f3..ec3704e7c 100644 --- a/tests/app/views/test_suppliers.py +++ b/tests/app/views/test_suppliers.py @@ -245,9 +245,6 @@ def test_should_have_supplier_details_on_supplier_page(self): assert_true( "Example Company Limited is an innovation station sensation; we deliver software so bleeding edge you literally won't be able to run any of it on your systems." # noqa in res.get_data(as_text=True)) - assert_true( - self._strip_whitespace('UK Ministry of Defence, Astula Ltd, Bedrock Communications Ltd
') # noqa - in self._strip_whitespace(res.get_data(as_text=True))) def test_should_show_supplier_with_no_desc_or_clients(self): self._data_api_client.get_supplier.return_value = self.supplier_with_minimum_data # noqa