Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhnroyal committed Jun 5, 2021
1 parent 430f643 commit 05240af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ void main() {
request: Request(
method: RequestMethods.post,
headers: <String, dynamic>{
Headers.contentTypeHeader: Matchers.pattern('multipart/form-data'),
Headers.contentTypeHeader:
Matchers.pattern('multipart/form-data'),
Headers.contentLengthHeader: Matchers.integer,
},
data: FormDataMatcher(
Expand Down Expand Up @@ -283,7 +284,8 @@ void main() {
request: Request(
method: RequestMethods.post,
headers: <String, dynamic>{
Headers.contentTypeHeader: Matchers.pattern('multipart/form-data'),
Headers.contentTypeHeader:
Matchers.pattern('multipart/form-data'),
Headers.contentLengthHeader: Matchers.integer,
},
data: FormDataMatcher(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class ListParamMatcher<T> extends Matcher {
ListEquality<T>().equals(
actual.value,
expected.value,
) && actual.format == expected.format;
) &&
actual.format == expected.format;
}
}

0 comments on commit 05240af

Please sign in to comment.