=== added directory 'python/examples'
=== renamed file 'python/test.py' => 'python/examples/compare.py'
=== modified file 'python/setup.py'
--- a/python/setup.py	2008-04-11 12:29:51 +0000
+++ b/python/setup.py	2008-04-13 21:08:34 +0000
@@ -88,7 +88,7 @@
                               ),
 
                     ],
-      test_suite = "mysql.cluster.tests.NdbTest.test_all",
+      test_suite = "tests.NdbTest.test_all",
       entry_points = {
         'sqlalchemy.databases': [ 'ndbapi = mysql.cluster.alchemy:dialect' ]
       },

=== renamed directory 'python/mysql/cluster/tests' => 'python/tests'
=== modified file 'python/tests/ClusterTestCase.py'
--- a/python/mysql/cluster/tests/ClusterTestCase.py	2007-05-21 23:00:16 +0000
+++ b/python/tests/ClusterTestCase.py	2008-04-13 21:08:34 +0000
@@ -1,7 +1,7 @@
 import unittest
 import MySQLdb
 from mysql.cluster import ndbapi
-from mysql.cluster.tests import shared_cluster_connection
+import shared_cluster_connection
 
 
 class ClusterTestCase(unittest.TestCase):

=== modified file 'python/tests/__init__.py'
--- a/python/mysql/cluster/tests/__init__.py	2007-05-08 02:02:57 +0000
+++ b/python/tests/__init__.py	2008-04-13 21:08:34 +0000
@@ -0,0 +1,1 @@
+import NdbTest

=== added directory 'python/tests/ndbapi'
=== renamed file 'python/mysql/cluster/tests/NdbTest.py' => 'python/tests/ndbapi/NdbTest.py'
--- a/python/mysql/cluster/tests/NdbTest.py	2007-05-20 09:20:25 +0000
+++ b/python/tests/ndbapi/NdbTest.py	2008-04-13 21:08:34 +0000
@@ -1,4 +1,4 @@
-import ClusterTestCase
+from tests import ClusterTestCase
 from mysql.cluster import ndbapi
 import unittest
 
@@ -84,4 +84,4 @@
 if __name__=="__main__":
     #unittest.main()
     
-    unittest.TextTestRunner(verbosity=2).run(suite)
+    unittest.TextTestRunner(verbosity=2).run(test_all)

=== modified file 'python/tests/shared_cluster_connection.py'
--- a/python/mysql/cluster/tests/shared_cluster_connection.py	2007-05-21 23:00:16 +0000
+++ b/python/tests/shared_cluster_connection.py	2008-04-13 21:08:34 +0000
@@ -2,7 +2,7 @@
 
 conn=ndbapi.NdbFactory.createNdbClusterConnection()
 
-conn.connect(1,1,1)
-conn.wait_until_ready(30,30)
+conn.connect(5,3,1)
+conn.waitUntilReady(30,30)
 
 



