Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Remove unused dart:async import #19

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: dart

dart:
- 2.0.0
- 2.1.0
- dev

dart_task:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.6

* Require Dart >=2.1

## 1.0.5

* Don't allow the test to time out as long as the process is emitting output.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: test_process
version: 1.0.5
version: 1.0.6-dev

description: A package for testing subprocesses.
homepage: https://github.com/dart-lang/test_process

environment:
sdk: '>=2.0.0 <3.0.0'
sdk: '>=2.1.0 <3.0.0'

dependencies:
async: ^2.0.0
Expand Down
1 change: 0 additions & 1 deletion test/test_process_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'dart:async';
import 'dart:io';

import 'package:path/path.dart' as p;
Expand Down