From b6cefbb8c68d21ced8bcb4b199da8752e7cc1fa7 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Wed, 2 Aug 2023 17:07:47 +0800 Subject: [PATCH] Update dio_mixin_test.dart Signed-off-by: Alex Li --- dio/test/dio_mixin_test.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dio/test/dio_mixin_test.dart b/dio/test/dio_mixin_test.dart index ab56edf2e..ebcb84940 100644 --- a/dio/test/dio_mixin_test.dart +++ b/dio/test/dio_mixin_test.dart @@ -18,7 +18,10 @@ void main() { }); test('throws UnimplementedError when calling download', () { - expectLater(() => _TextDioMixin().download('a', 'b'), throwsA()); + expectLater( + () => _TextDioMixin().download('a', 'b'), + throwsA(), + ); }); }