Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Unified Diff: pkg/analyzer_cli/test/super_mixin_test.dart

Issue 2963323002: Add analytics to analyzer-cli and analysis server. (Closed)
Patch Set: update from review comments Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer_cli/test/strong_mode_test.dart ('k') | pkg/telemetry/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_cli/test/super_mixin_test.dart
diff --git a/pkg/analyzer_cli/test/super_mixin_test.dart b/pkg/analyzer_cli/test/super_mixin_test.dart
index d5cec87b380244dcaae64a3a4bcd8376975e1989..56903f0c1ef8108a1160076baa33ce80daf98144 100644
--- a/pkg/analyzer_cli/test/super_mixin_test.dart
+++ b/pkg/analyzer_cli/test/super_mixin_test.dart
@@ -43,7 +43,7 @@ void main() {
test('produces errors when option absent', () async {
var testPath = path.join(testDirectory, 'data/super_mixin_example.dart');
- await new Driver().start([testPath]);
+ await new Driver(isTesting: true).start([testPath]);
expect(exitCode, 3);
var stdout = outSink.toString();
@@ -61,7 +61,7 @@ void main() {
test('produces no errors when option present', () async {
var testPath = path.join(testDirectory, 'data/super_mixin_example.dart');
- await new Driver().start(['--supermixin', testPath]);
+ await new Driver(isTesting: true).start(['--supermixin', testPath]);
expect(exitCode, 0);
var stdout = outSink.toString();
« no previous file with comments | « pkg/analyzer_cli/test/strong_mode_test.dart ('k') | pkg/telemetry/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698