Correct test for 2 column assumption to 1 column
This commit is contained in:
parent
1610e6f194
commit
4957f7570b
|
@ -56,9 +56,9 @@ public class MultivariateNormalMixtureExpectationMaximizationTest {
|
|||
|
||||
@Test(expected = NumberIsTooSmallException.class)
|
||||
public void testMultipleColumnsRequired() {
|
||||
// Data should have at least 2 columns
|
||||
// Data should have at least 1 column
|
||||
double[][] data = new double[][] {
|
||||
{ 1 }, { 2 }
|
||||
{}, {}
|
||||
};
|
||||
new MultivariateNormalMixtureExpectationMaximization(data);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue