Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Fix lints, tiny bump to pkg:test (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Sep 9, 2024
1 parent 41163d1 commit ab35e4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/src/bound_multipart_stream.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'dart:convert';
import 'char_code.dart' as char_code;
import 'mime_shared.dart';

/// Bytes for '()<>@,;:\\"/[]?={} \t'.
/// Bytes for `()<>@,;:\\"/[]?={} \t`.
const _separators = {
40, 41, 60, 62, 64, 44, 59, 58, 92, 34, 47, 91, 93, 63, 61, 123, 125, 32, 9 //
};
Expand Down Expand Up @@ -348,7 +348,6 @@ class BoundMultipartStream {
default:
// Should be unreachable.
assert(false);
break;
}

// Move to the next byte.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ environment:

dev_dependencies:
dart_flutter_team_lints: ^3.0.0
test: ^1.16.0
test: ^1.16.6

0 comments on commit ab35e4a

Please sign in to comment.