@@ -45,12 +45,6 @@ void testMain() {
45
45
path.addOval (const ui.Rect .fromLTRB (10 , 10 , 100 , 100 ));
46
46
expect (path.computeMetrics ().length, 2 );
47
47
48
- // Path metrics can be iterated over multiple times.
49
- final ui.PathMetrics metrics = path.computeMetrics ();
50
- expect (metrics.toList ().length, 2 );
51
- expect (metrics.toList ().length, 2 );
52
- expect (metrics.toList ().length, 2 );
53
-
54
48
// Can simultaneously iterate over multiple metrics from the same path.
55
49
final ui.PathMetrics metrics1 = path.computeMetrics ();
56
50
final ui.PathMetrics metrics2 = path.computeMetrics ();
@@ -68,8 +62,7 @@ void testMain() {
68
62
expect (iter2.moveNext (), isFalse);
69
63
expect (() => iter1.current, throwsRangeError);
70
64
expect (() => iter2.current, throwsRangeError);
71
- // TODO(hterkelsen): https://github.com/flutter/flutter/issues/115327
72
- }, skip: true );
65
+ });
73
66
74
67
test ('CkPath.reset' , () {
75
68
final ui.Path path = ui.Path ();
@@ -171,8 +164,7 @@ void testMain() {
171
164
expect (measure0.extractPath (0 , 15 ).getBounds (), const ui.Rect .fromLTRB (0 , 0 , 10 , 5 ));
172
165
expect (measure1.contourIndex, 1 );
173
166
expect (measure1.extractPath (0 , 15 ).getBounds (), const ui.Rect .fromLTRB (20 , 20 , 30 , 25 ));
174
- // TODO(hterkelsen): https://github.com/flutter/flutter/issues/115327
175
- }, skip: true );
167
+ });
176
168
177
169
test ('Path.from' , () {
178
170
const ui.Rect rect1 = ui.Rect .fromLTRB (0 , 0 , 10 , 10 );
0 commit comments