refactor: added trailing commas

pull/3/head
alestiago 4 years ago
parent 92e554f411
commit 5d3428f7ba

@ -11,7 +11,10 @@ void main() {
});
test('supports value equality', () {
expect(BallLost(), equals(const BallLost()));
expect(
BallLost(),
equals(const BallLost()),
);
});
});
@ -21,8 +24,14 @@ void main() {
});
test('supports value equality', () {
expect(Scored(points: 1), equals(const Scored(points: 1)));
expect(const Scored(points: 1), isNot(equals(const Scored(points: 2))));
expect(
Scored(points: 1),
equals(const Scored(points: 1)),
);
expect(
const Scored(points: 1),
isNot(equals(const Scored(points: 2))),
);
});
test(

Loading…
Cancel
Save