--- a/Allura/allura/tests/functional/test_admin.py
+++ b/Allura/allura/tests/functional/test_admin.py
@@ -125,7 +125,7 @@
     def test_tool_list(self):
         r = self.app.get('/admin/tools')
         new_ep_opts = r.html.find('select',{'class':"new_ep_name"}).findAll('option')
-        strings = [ opt.string.strip() for opt in new_ep_opts ]
+        strings = [ ' '.join(opt.string.strip().split()) for opt in new_ep_opts ]
         assert strings == [
             'New Tool',
             'External Link',
@@ -140,6 +140,8 @@
             'VHOST',
             'Classic Hosted Apps',
             'MySQL Databases',
+            'Chat (alpha)',
+            'Blog (alpha)',
             'Subproject' ], strings
 
     def test_project_icon(self):