Skip to content

Commit

Permalink
Missed file writes
Browse files Browse the repository at this point in the history
  • Loading branch information
natebosch committed Dec 13, 2024
1 parent ce8e18b commit a362903
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/matcher/test/never_called_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<Never>.empty().listen(neverCalled);
});

expectTestPassed(monitor);
Expand Down
2 changes: 1 addition & 1 deletion pkgs/matcher/test/operator_matchers_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit a362903

Please sign in to comment.