@@ -121,7 +121,10 @@ void main() {
121121 duration: Duration (milliseconds: 300 ),
122122 type: GFAnimationType .container,
123123 color: Colors .teal,
124- child: SizedBox (width: 45 , height: 45 ,),
124+ child: SizedBox (
125+ width: 45 ,
126+ height: 45 ,
127+ ),
125128 ));
126129 expect (tester.binding.transientCallbackCount, 0 );
127130 await tester.pump (const Duration (seconds: 1 ));
@@ -130,7 +133,10 @@ void main() {
130133 duration: Duration (milliseconds: 300 ),
131134 type: GFAnimationType .container,
132135 color: Colors .teal,
133- child: SizedBox (width: 45 , height: 45 ,),
136+ child: SizedBox (
137+ width: 45 ,
138+ height: 45 ,
139+ ),
134140 ));
135141 expect (tester.binding.transientCallbackCount, 0 );
136142 await tester.pump (const Duration (seconds: 1 ));
@@ -139,7 +145,10 @@ void main() {
139145 duration: Duration (milliseconds: 300 ),
140146 type: GFAnimationType .container,
141147 color: Colors .teal,
142- child: SizedBox (width: 45 , height: 45 ,),
148+ child: SizedBox (
149+ width: 45 ,
150+ height: 45 ,
151+ ),
143152 ));
144153 expect (tester.binding.transientCallbackCount,
145154 0 ); // this is the only time an animation should have started!
@@ -149,7 +158,10 @@ void main() {
149158 duration: Duration (milliseconds: 300 ),
150159 type: GFAnimationType .container,
151160 color: Colors .teal,
152- child: SizedBox (width: 45 , height: 45 ,),
161+ child: SizedBox (
162+ width: 45 ,
163+ height: 45 ,
164+ ),
153165 ));
154166 expect (tester.binding.transientCallbackCount, 0 );
155167 });
0 commit comments