From 48a2d7f6139d92281a311652e51e54303928be18 Mon Sep 17 00:00:00 2001
From: Nicolas Delaby <nicolas@nexedi.com>
Date: Tue, 12 May 2009 15:18:03 +0000
Subject: [PATCH] rename tests

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26942 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/Formulator/tests/testFormulator.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/product/Formulator/tests/testFormulator.py b/product/Formulator/tests/testFormulator.py
index 1a4cc47f1b..f9bd58c114 100644
--- a/product/Formulator/tests/testFormulator.py
+++ b/product/Formulator/tests/testFormulator.py
@@ -12,13 +12,13 @@ except ImportError:
     # startup is only in Zope2.6
     pass
 
-from Products.Formulator.tests import test_Form, test_validators, test_serialize
+from Products.Formulator.tests import testForm, testFormValidator, testSerializeForm
 
 def test_suite():
     suite = unittest.TestSuite()
-    suite.addTest(test_Form.test_suite())
-    suite.addTest(test_validators.test_suite())
-    suite.addTest(test_serialize.test_suite())
+    suite.addTest(testForm.test_suite())
+    suite.addTest(testFormValidator.test_suite())
+    suite.addTest(testSerializeForm.test_suite())
     return suite
 
 def main():
-- 
2.30.9