diff --git a/analytics/tests/test_views.py b/analytics/tests/test_views.py index c0b5d8779d..fe4fac5684 100644 --- a/analytics/tests/test_views.py +++ b/analytics/tests/test_views.py @@ -319,7 +319,7 @@ class TestMapArrays(ZulipTestCase): self.assertEqual(result, {'Old desktop app': [32, 36, 39], 'Old iOS app': [1, 2, 3], - 'New iOS app': [1, 5, 7], + 'Mobile app': [1, 5, 7], 'Website': [1, 2, 3], 'Python API': [2, 4, 6], 'SomethingRandom': [4, 5, 6], diff --git a/analytics/views.py b/analytics/views.py index 3eb747e181..7d80eda624 100644 --- a/analytics/views.py +++ b/analytics/views.py @@ -163,7 +163,7 @@ def client_label_map(name): if name == "ZulipiOS": return "Old iOS app" if name == "ZulipMobile": - return "New iOS app" + return "Mobile app" if name in ["ZulipPython", "API: Python"]: return "Python API" if name.startswith("Zulip") and name.endswith("Webhook"):