05a60523adcab106a4abe2abb82bd922a8030df8,tests/test_algorithms.py,AlgorithmTests,testSphereGenerator,#AlgorithmTests#,25

Before Change


        // only one sphere possible
        self.failUnless( len(minimal) == 1 )
        // check sphere
        self.failUnless( (minimal[0][0] == 0).all() )
        self.failUnless( (minimal[0][1] == 0).all() )
        self.failUnless( (minimal[0][2] == 0).all() )

        // make bigger 3d mask

After Change


        // only one sphere possible
        self.failUnless( len(minimal) == 1 )
        // check sphere
        self.failUnless( minimal[0].shape == (1,1,1) )
        self.failUnless( minimal[0][0,0,0] == True )

        // make bigger 3d mask
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: PyMVPA/PyMVPA
Commit Name: 05a60523adcab106a4abe2abb82bd922a8030df8
Time: 2007-09-18
Author: michael.hanke@gmail.com
File Name: tests/test_algorithms.py
Class Name: AlgorithmTests
Method Name: testSphereGenerator


Project Name: PyMVPA/PyMVPA
Commit Name: b157150be42a40cd0bd9e7609caadb267133cd4c
Time: 2009-08-19
Author: debian@onerussian.com
File Name: mvpa/tests/test_procrust.py
Class Name: ProcrusteanMapperTests
Method Name: testSimple


Project Name: PyMVPA/PyMVPA
Commit Name: 4f276f32609ba16b11b8a78077590691a7620f0f
Time: 2009-05-27
Author: debian@onerussian.com
File Name: mvpa/tests/test_regr.py
Class Name: RegressionsTests
Method Name: testRegressions