From e16c078e9c2960a0a8e61911994d0ed56b8d44a0 Mon Sep 17 00:00:00 2001 From: Chris Van Date: Fri, 22 Feb 2013 13:46:07 -0800 Subject: [PATCH] Revert "Update string tests" This reverts commit 55dbb39c3504c0ef54714b1682e9daa0f3eb2586. --- mkt/developers/tests/test_views.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mkt/developers/tests/test_views.py b/mkt/developers/tests/test_views.py index 92e1000059..fccf0ea39b 100644 --- a/mkt/developers/tests/test_views.py +++ b/mkt/developers/tests/test_views.py @@ -193,8 +193,8 @@ class TestAppDashboard(AppHubTest): ('Compatibility & Payments', app.get_dev_url('payments')), ('Manage Status', app.get_dev_url('versions')), ('View Listing', app.get_url_path()), - ('Statistics', app.get_stats_url()), - ('Transactions', urlparams( + ('View Statistics', app.get_stats_url()), + ('View Transactions', urlparams( reverse('mkt.developers.transactions'), app=app.id)), ] amo.tests.check_links(expected, doc('a.action-link')) @@ -215,8 +215,8 @@ class TestAppDashboard(AppHubTest): ('Compatibility & Payments', app.get_dev_url('payments')), ('Manage Status & Versions', app.get_dev_url('versions')), ('View Listing', app.get_url_path()), - ('Statistics', app.get_stats_url()), - ('Transactions', urlparams( + ('View Statistics', app.get_stats_url()), + ('View Transactions', urlparams( reverse('mkt.developers.transactions'), app=app.id)), ('Manage In-App Payments', app.get_dev_url('in_app_config')), ] @@ -235,8 +235,8 @@ class TestAppDashboard(AppHubTest): ('Manage Team Members', app.get_dev_url('owner')), ('Manage Status', app.get_dev_url('versions')), ('View Listing', app.get_url_path()), - ('Statistics', app.get_stats_url()), - ('Transactions', urlparams( + ('View Statistics', app.get_stats_url()), + ('View Transactions', urlparams( reverse('mkt.developers.transactions'), app=app.id)), ] amo.tests.check_links(expected, doc('a.action-link'), verify=False)