diff --git a/packages/pinball_flame/test/src/shapes/arc_shape_test.dart b/packages/pinball_flame/test/src/shapes/arc_shape_test.dart index cdb889a2..0c9f0a0f 100644 --- a/packages/pinball_flame/test/src/shapes/arc_shape_test.dart +++ b/packages/pinball_flame/test/src/shapes/arc_shape_test.dart @@ -13,7 +13,7 @@ void main() { arcRadius: 10, angle: 2 * math.pi, ), - isA, + isA(), ); }); }); diff --git a/packages/pinball_flame/test/src/shapes/bezier_curve_shape_test.dart b/packages/pinball_flame/test/src/shapes/bezier_curve_shape_test.dart index 1d9d010c..c2328a2f 100644 --- a/packages/pinball_flame/test/src/shapes/bezier_curve_shape_test.dart +++ b/packages/pinball_flame/test/src/shapes/bezier_curve_shape_test.dart @@ -15,7 +15,7 @@ void main() { Vector2(10, 10), ], ), - isA, + isA(), ); }); }); diff --git a/packages/pinball_flame/test/src/shapes/ellipse_shape_test.dart b/packages/pinball_flame/test/src/shapes/ellipse_shape_test.dart index baf356ab..0bb760d9 100644 --- a/packages/pinball_flame/test/src/shapes/ellipse_shape_test.dart +++ b/packages/pinball_flame/test/src/shapes/ellipse_shape_test.dart @@ -13,7 +13,7 @@ void main() { majorRadius: 10, minorRadius: 8, ), - isNotNull, + isA(), ); });