@@ -45,12 +45,6 @@ void testMain() {
4545 path.addOval (const ui.Rect .fromLTRB (10 , 10 , 100 , 100 ));
4646 expect (path.computeMetrics ().length, 2 );
4747
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-
5448 // Can simultaneously iterate over multiple metrics from the same path.
5549 final ui.PathMetrics metrics1 = path.computeMetrics ();
5650 final ui.PathMetrics metrics2 = path.computeMetrics ();
@@ -68,8 +62,7 @@ void testMain() {
6862 expect (iter2.moveNext (), isFalse);
6963 expect (() => iter1.current, throwsRangeError);
7064 expect (() => iter2.current, throwsRangeError);
71- // TODO(hterkelsen): https://github.com/flutter/flutter/issues/115327
72- }, skip: true );
65+ });
7366
7467 test ('CkPath.reset' , () {
7568 final ui.Path path = ui.Path ();
@@ -171,8 +164,7 @@ void testMain() {
171164 expect (measure0.extractPath (0 , 15 ).getBounds (), const ui.Rect .fromLTRB (0 , 0 , 10 , 5 ));
172165 expect (measure1.contourIndex, 1 );
173166 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+ });
176168
177169 test ('Path.from' , () {
178170 const ui.Rect rect1 = ui.Rect .fromLTRB (0 , 0 , 10 , 10 );
0 commit comments