Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lints
  • Loading branch information
bparrishMines committed Dec 16, 2022
commit 0f7ededf9b8e285a72cb25d6145fa551bf3d437a
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void main() {
);
// Run & Verify
expect(
() async => await controller.loadRequest(
() async => controller.loadRequest(
WebViewRequest(
uri: Uri.parse('flutter.dev'),
method: WebViewRequestMethod.get,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void main() {
WebWebViewController(WebWebViewControllerCreationParams());

await expectLater(
() async => await controller.loadRequest(
() async => controller.loadRequest(
LoadRequestParams(uri: Uri.parse('flutter.dev')),
),
throwsA(const TypeMatcher<ArgumentError>()));
Expand Down