Skip to content

Commit

Permalink
Update http_profile_response_data_test.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
brianquinlan committed Mar 28, 2024
1 parent 0bf9f2c commit b7c8b2e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/http_profile/test/http_profile_response_data_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ void main() {
expect(redirectFromBackingMap['method'], 'GET');
expect(redirectFromBackingMap['location'], 'https://images.example.com/1');

expect(
profile.responseData.redirects,
HttpProfileRedirectData(
statusCode: 301,
method: 'GET',
location: 'https://images.example.com/1',
));
expect(profile.responseData.redirects, [
HttpProfileRedirectData(
statusCode: 301,
method: 'GET',
location: 'https://images.example.com/1',
)
]);
});

test('populating HttpClientRequestProfile.responseData.headersListValues',
Expand Down

0 comments on commit b7c8b2e

Please sign in to comment.