From ba98412ebf61fc77a785a882b62deea4d6689d69 Mon Sep 17 00:00:00 2001 From: Gary Roumanis <groumanis@gmail.com> Date: Wed, 11 Dec 2019 14:58:57 -0800 Subject: [PATCH] Fix test_chain_test at head (#1122) --- pkgs/test/test/runner/test_chain_test.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/test/test/runner/test_chain_test.dart b/pkgs/test/test/runner/test_chain_test.dart index 8c468bf0..7c883a8f 100644 --- a/pkgs/test/test/runner/test_chain_test.dart +++ b/pkgs/test/test/runner/test_chain_test.dart @@ -6,8 +6,8 @@ import 'dart:convert'; -import 'package:test_descriptor/test_descriptor.dart' as d; import 'package:test/test.dart'; +import 'package:test_descriptor/test_descriptor.dart' as d; import '../io.dart'; @@ -70,12 +70,12 @@ void main() { 'dart_test.yaml', jsonEncode({ 'fold_stack_frames': { - 'only': ['test'] + 'only': ['test_api'] } })) .create(); var test = await runTest(['test.dart']); - expect(test.stdoutStream(), emitsThrough(contains('package:test'))); + expect(test.stdoutStream(), emitsThrough(contains('package:test_api'))); await test.shouldExit(1); - }, skip: 'https://github.com/dart-lang/test/issues/1120'); + }); } -- GitLab