Skip to content

Commit

Permalink
format;
Browse files Browse the repository at this point in the history
  • Loading branch information
dnfield committed Feb 20, 2024
1 parent 24a94c3 commit 07f161b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/flutter_svg_test/test/flutter_svg_test_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ void main() {

testWidgets('network svg', (WidgetTester widgetTester) async {
final http.Client fakeClient = _FakeHttpClient();
final SvgPicture asset = SvgPicture.network('svg.dart', httpClient: fakeClient);
final SvgPicture asset = SvgPicture.network(
'svg.dart',
httpClient: fakeClient,
);
await widgetTester.pumpWidget(asset);

expect(find.svg(asset.bytesLoader), findsOneWidget);
Expand Down

0 comments on commit 07f161b

Please sign in to comment.