From 001af97db20c4c12a70575f81c4fd0324c84178e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laur=C3=A9line=20Gu=C3=A9rin?= Date: Tue, 17 May 2022 15:43:32 +0200 Subject: [PATCH] trivial: fix translation string in tests --- tests/pricing/test_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pricing/test_manager.py b/tests/pricing/test_manager.py index 2c8d24d4..509c0a01 100644 --- a/tests/pricing/test_manager.py +++ b/tests/pricing/test_manager.py @@ -494,7 +494,7 @@ def test_add_category(settings, app, admin_user): resp = app.get('/manage/') resp = resp.click('Pricing') resp = resp.click('Criterias') - resp = resp.click('New criteria category') + resp = resp.click('New category') resp.form['label'] = 'QF' resp = resp.form.submit() category = CriteriaCategory.objects.latest('pk')