Skip to content

Commit

Permalink
Correct test for 2 column assumption to 1 column
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Mar 5, 2024
1 parent 1610e6f commit 4957f75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public void testNonJaggedData() {

@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);
}
Expand Down

0 comments on commit 4957f75

Please sign in to comment.