test: properly used isA matcher

pull/410/head
alestiago 3 years ago
parent cddafc7fe0
commit ea9504127f

@ -13,7 +13,7 @@ void main() {
arcRadius: 10,
angle: 2 * math.pi,
),
isA<ArcShape>,
isA<ArcShape>(),
);
});
});

@ -15,7 +15,7 @@ void main() {
Vector2(10, 10),
],
),
isA<BezierCurveShape>,
isA<BezierCurveShape>(),
);
});
});

@ -13,7 +13,7 @@ void main() {
majorRadius: 10,
minorRadius: 8,
),
isNotNull,
isA<EllipseShape>(),
);
});

Loading…
Cancel
Save