From 97b5c80fdcb291983bd2a732a3b3655d889302f3 Mon Sep 17 00:00:00 2001
From: Roque Porchetto <roque.porchetto@nexedi.com>
Date: Mon, 4 Feb 2019 14:30:49 +0100
Subject: [PATCH] [HARDCODED] fixing typo in test path definition

---
 tests/__init__.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/tests/__init__.py b/tests/__init__.py
index 682f404eee..fccfcfbe23 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -35,10 +35,7 @@ class _ERP5(ERP5TypeTestSuite):
     component_re = re.compile(".*/([^/]+)/TestTemplateItem/portal_components"
                               "/test\.[^.]+\.([^.]+).py$")
     for test_path in (
-        #glob('%s/product/*/tests/test*.py' % path) +
-        #glob('%s/bt5/*/TestTemplateItem/test*.py' % path) +
-        glob('%s/bt5/erp5_crm_renderjs_ui_test/TestTemplateItem/portal_components/test.erp5.testFunctionalOfficeJSDiscussionTool.py' % path)):
-        #glob('%s/bt5/*/TestTemplateItem/portal_components/test.*.test*.py' % path)):
+        glob('%s/bt5/erp5_crm_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path)):
       component_re_match = component_re.match(test_path)
       if component_re_match is not None:
         test_case = "%s:%s" % (component_re_match.group(1),
-- 
2.30.9