Skip to content

Commit

Permalink
Cleanup formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
renggli committed Oct 3, 2020
1 parent b04930a commit 4bb3205
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/matrix_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,15 @@ void matrixTest(String name, MatrixFormat format) {
expect(index.copy().compare(index), isTrue);
for (var r = 0; r < index.rowCount; r++) {
for (var c = 0; c < index.columnCount; c++) {
expect(index.get(r, c), Point(r == 0 ? 5 : r == 1 ? 0 : 4, c));
expect(
index.get(r, c),
Point(
r == 0
? 5
: r == 1
? 0
: 4,
c));
}
}
});
Expand Down

0 comments on commit 4bb3205

Please sign in to comment.