diff --git a/pkgs/matcher/test/never_called_test.dart b/pkgs/matcher/test/never_called_test.dart index 4c83e39db..39e09daa1 100644 --- a/pkgs/matcher/test/never_called_test.dart +++ b/pkgs/matcher/test/never_called_test.dart @@ -15,7 +15,7 @@ void main() { test("doesn't throw if it isn't called", () async { var monitor = await TestCaseMonitor.run(() { - const Stream.empty().listen(neverCalled); + const Stream.empty().listen(neverCalled); }); expectTestPassed(monitor); diff --git a/pkgs/matcher/test/operator_matchers_test.dart b/pkgs/matcher/test/operator_matchers_test.dart index f4b6d3a45..46151e0f6 100644 --- a/pkgs/matcher/test/operator_matchers_test.dart +++ b/pkgs/matcher/test/operator_matchers_test.dart @@ -3,7 +3,7 @@ // BSD-style license that can be found in the LICENSE file. import 'package:matcher/matcher.dart'; -import 'package:test/test.dart' show test, expect, throwsArgumentError; +import 'package:test/test.dart' show expect, test, throwsArgumentError; import 'test_utils.dart';