d865bc593f67b86983651a114b51b4b47d00f195,tests/testOperatorWrapper.py,,,#,173
  
 
Before Change 
if __name__ == "__main__":
    import nose
    ret = nose.run(defaultTest=__file__, env={"NOSE_NOCAPTURE" : 1}) 
    if not ret: sys.exit(1)
After Change 
if __name__ == "__main__":
    import sys
    import nose
    sys.argv.append("--nocapture")     // Don"t steal stdout.  Show it on the console as usual.
    sys.argv.append("--nologcapture") // Don"t set the logging level to DEBUG.  Leave it alone.
    ret = nose.run(defaultTest=__file__)
    if not ret: sys.exit(1)In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 7
Instances  Project Name: ilastik/ilastik
 Commit Name: d865bc593f67b86983651a114b51b4b47d00f195
 Time: 2015-08-18
 Author: bergs@janelia.hhmi.org
 File Name: tests/testOperatorWrapper.py
 Class Name: 
 Method Name: 
 Project Name: ilastik/ilastik
 Commit Name: d865bc593f67b86983651a114b51b4b47d00f195
 Time: 2015-08-18
 Author: bergs@janelia.hhmi.org
 File Name: tests/testRoiInterface.py
 Class Name: 
 Method Name: 
 Project Name: ilastik/ilastik
 Commit Name: d865bc593f67b86983651a114b51b4b47d00f195
 Time: 2015-08-18
 Author: bergs@janelia.hhmi.org
 File Name: tests/testMultiInputConcatenater.py
 Class Name: 
 Method Name: 
 Project Name: ilastik/ilastik
 Commit Name: d865bc593f67b86983651a114b51b4b47d00f195
 Time: 2015-08-18
 Author: bergs@janelia.hhmi.org
 File Name: tests/testOpAttributeSelector.py
 Class Name: 
 Method Name: