Skip to content

Commit

Permalink
[SPARK-4409] Hopefully fixed Java Test
Browse files Browse the repository at this point in the history
  • Loading branch information
brkyvz committed Dec 16, 2014
1 parent d8be7bc commit 65c562e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public void diagonalMatrixConstruction() {
assertArrayEquals(s.values(), ss.values(), 0.0);
assert(s.values().length == 2);
assert(ss.values().length == 2);
assert(s.colPtrs().length == 2);
assert(ss.colPtrs().length == 2);
assert(s.colPtrs().length == 4);
assert(ss.colPtrs().length == 4);
}

@Test
Expand Down

0 comments on commit 65c562e

Please sign in to comment.