We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f01f79 commit 2c4925dCopy full SHA for 2c4925d
tests/tests_rest_customers.py
@@ -142,7 +142,7 @@ def test_delete_customer_should_return_204(self):
142
response = self._subject.delete(f'/api/v2/manage/customers/{identifier}')
143
self.assertEqual(204, response.status_code)
144
145
- def test_delete_customer_should_return_400_when_referenced_by_a_customer(self):
+ def test_delete_customer_should_return_400_when_referenced_in_a_case(self):
146
body = {'customer_name': 'customer'}
147
response = self._subject.create('/api/v2/manage/customers', body).json()
148
identifier = response['customer_id']
0 commit comments