Skip to content

Commit ba98412

Browse files
authored
Fix test_chain_test at head (#1122)
1 parent 746a4dc commit ba98412

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkgs/test/test/runner/test_chain_test.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
import 'dart:convert';
88

9-
import 'package:test_descriptor/test_descriptor.dart' as d;
109
import 'package:test/test.dart';
10+
import 'package:test_descriptor/test_descriptor.dart' as d;
1111

1212
import '../io.dart';
1313

@@ -70,12 +70,12 @@ void main() {
7070
'dart_test.yaml',
7171
jsonEncode({
7272
'fold_stack_frames': {
73-
'only': ['test']
73+
'only': ['test_api']
7474
}
7575
}))
7676
.create();
7777
var test = await runTest(['test.dart']);
78-
expect(test.stdoutStream(), emitsThrough(contains('package:test')));
78+
expect(test.stdoutStream(), emitsThrough(contains('package:test_api')));
7979
await test.shouldExit(1);
80-
}, skip: 'https://github.com/dart-lang/test/issues/1120');
80+
});
8181
}

0 commit comments

Comments
 (0)