[Scipy-svn] r4536 - trunk/scipy/cluster/tests
scipy-svn@scip...
scipy-svn@scip...
Wed Jul 9 07:52:02 CDT 2008
Author: cdavid
Date: 2008-07-09 07:51:55 -0500 (Wed, 09 Jul 2008)
New Revision: 4536
Modified:
trunk/scipy/cluster/tests/test_vq.py
Log:
Fix useless message in test.
Modified: trunk/scipy/cluster/tests/test_vq.py
===================================================================
--- trunk/scipy/cluster/tests/test_vq.py 2008-07-09 12:34:18 UTC (rev 4535)
+++ trunk/scipy/cluster/tests/test_vq.py 2008-07-09 12:51:55 UTC (rev 4536)
@@ -107,7 +107,7 @@
res = kmeans2(data, initk, missing = 'raise')
raise AssertionError("Exception not raised ! Should not happen")
except ClusterError, e:
- print "exception raised as expected: " + str(e)
+ pass
def test_kmeans2_simple(self):
"""Testing simple call to kmeans2 and its results."""
More information about the Scipy-svn
mailing list