From 210cb8a73c8e76053e3a0ef4a6d2815592fb8fb0 Mon Sep 17 00:00:00 2001
From: Vincent Pelletier <vincent@nexedi.com>
Date: Mon, 24 Apr 2006 14:03:28 +0000
Subject: [PATCH] Improve docstring. Correct indentation.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6902 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Tool/TestTool.py | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/product/ERP5/Tool/TestTool.py b/product/ERP5/Tool/TestTool.py
index 7c0f8cdbd3..ad835c3365 100644
--- a/product/ERP5/Tool/TestTool.py
+++ b/product/ERP5/Tool/TestTool.py
@@ -41,18 +41,18 @@ from Products.ERP5 import _dtmldir
 from zLOG import LOG
 
 class TestTool (BaseTool):
-    """
-    holds tests
-    """
-    id = 'portal_tests'
-    meta_type = 'ERP5 Test Tool'
-    portal_type = 'Test Tool'
-    allowed_types = ( 'ERP5 Portal Test',)
-
-    # Declarative Security
-    security = ClassSecurityInfo()
-
-    security.declareProtected( Permissions.ManagePortal, 'manage_overview' )
-    manage_overview = DTMLFile( 'explainRuleTool', _dtmldir )
+  """
+    Container for fonctionnal tests.
+  """
+  id = 'portal_tests'
+  meta_type = 'ERP5 Test Tool'
+  portal_type = 'Test Tool'
+  allowed_types = ( 'ERP5 Portal Test',)
+
+  # Declarative Security
+  security = ClassSecurityInfo()
+
+  security.declareProtected( Permissions.ManagePortal, 'manage_overview' )
+  manage_overview = DTMLFile( 'explainRuleTool', _dtmldir )
 
 InitializeClass(TestTool)
-- 
2.30.9