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

Unified Diff: pkg/analysis_server/test/services/refactoring/rename_library_test.dart

Issue 2939723002: Clean up some hints (Closed)
Patch Set: Created 3 years, 6 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
Index: pkg/analysis_server/test/services/refactoring/rename_library_test.dart
diff --git a/pkg/analysis_server/test/services/refactoring/rename_library_test.dart b/pkg/analysis_server/test/services/refactoring/rename_library_test.dart
index 3d249bc28cdcc1f78316710950181ec5e440f691..9ba81d4fc065e2c684fb894fd659900839a2fb9a 100644
--- a/pkg/analysis_server/test/services/refactoring/rename_library_test.dart
+++ b/pkg/analysis_server/test/services/refactoring/rename_library_test.dart
@@ -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 'package:analyzer/src/generated/source.dart';
import 'package:analyzer_plugin/protocol/protocol_common.dart';
import 'package:test/test.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
@@ -41,7 +40,7 @@ library my.app;
}
test_createChange() async {
- Source unitSource = addSource(
+ addSource(
'/part.dart',
'''
part of my.app;
@@ -68,7 +67,7 @@ part of the.new.name;
}
test_createChange_hasWhitespaces() async {
- Source unitSource = addSource(
+ addSource(
'/part.dart',
'''
part of my . app;

Powered by Google App Engine
This is Rietveld 408576698