| Index: tests/lib/math/point_test.dart
|
| diff --git a/tests/lib/math/point_test.dart b/tests/lib/math/point_test.dart
|
| index f15c6353d27f4fa23182a7f4e38ced98310e714d..8d9ab72663ce2b4323a727455c1484818b71359f 100644
|
| --- a/tests/lib/math/point_test.dart
|
| +++ b/tests/lib/math/point_test.dart
|
| @@ -9,14 +9,14 @@ import 'package:unittest/unittest.dart';
|
|
|
| main() {
|
| test('constructor', () {
|
| - var point = new Point();
|
| + var point = new Point(0, 0);
|
| expect(point.x, 0);
|
| expect(point.y, 0);
|
| expect('$point', 'Point(0, 0)');
|
| });
|
|
|
| test('constructor X', () {
|
| - var point = new Point<int>(10);
|
| + var point = new Point<int>(10, 0);
|
| expect(point.x, 10);
|
| expect(point.y, 0);
|
| expect('$point', 'Point(10, 0)');
|
|
|