Skip to content

Commit

Permalink
Update dio_mixin_test.dart
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Li <[email protected]>
  • Loading branch information
AlexV525 authored Aug 2, 2023
1 parent db4b497 commit b6cefbb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dio/test/dio_mixin_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ void main() {
});

test('throws UnimplementedError when calling download', () {
expectLater(() => _TextDioMixin().download('a', 'b'), throwsA<UnimplementedError>());
expectLater(
() => _TextDioMixin().download('a', 'b'),
throwsA<UnimplementedError>(),
);
});
}

Expand Down

0 comments on commit b6cefbb

Please sign in to comment.