Unverified Commit 26ba9378 authored by Mikkel Nygaard Ravn's avatar Mikkel Nygaard Ravn Committed by GitHub

Fix compiler error (#20687)

parent 405d1c47
...@@ -91,7 +91,7 @@ void main() { ...@@ -91,7 +91,7 @@ void main() {
final FlutterProject project = await someProject(); final FlutterProject project = await someProject();
await expectLater( await expectLater(
project.android.materialize(), project.android.materialize(),
throwsA(const isInstanceOf<AssertionError>()), throwsA(isInstanceOf<AssertionError>()),
); );
}); });
testInMemory('exits on already materialized module', () async { testInMemory('exits on already materialized module', () async {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment