Remove ft from method name and url, it doesn't add any meaning.

This commit is contained in:
Rebecca Law
2019-07-22 14:34:15 +01:00
parent 82d3bfcc85
commit e0bcad77f5
4 changed files with 11 additions and 11 deletions

View File

@@ -876,7 +876,7 @@ def test_usage_page_displays_letters_ordered_by_postage(
{'month': 'April', 'notification_type': 'letter', 'rate': 0.3, 'billing_units': 3, 'postage': 'second'},
{'month': 'April', 'notification_type': 'letter', 'rate': 0.5, 'billing_units': 1, 'postage': 'first'},
]
mocker.patch('app.billing_api_client.get_billable_units_ft', return_value=billable_units_resp)
mocker.patch('app.billing_api_client.get_billable_units', return_value=billable_units_resp)
service_one['permissions'].append('letter')
page = client_request.get(
'main.usage',