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

Unified Diff: pkg/analysis_server/test/integration/integration_tests.dart

Issue 1521883002: Fix lints: unnecessary_brace_in_string_interp (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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/integration/integration_tests.dart
diff --git a/pkg/analysis_server/test/integration/integration_tests.dart b/pkg/analysis_server/test/integration/integration_tests.dart
index f4dcfeb0a63f1ff65389c6613e1f1b90c709ccf9..a83e7557e892d7674e4a5c9e5ad5044c341cc7bb 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -582,7 +582,7 @@ class Server {
_pendingCommands[id] = completer;
String line = JSON.encode(command);
_recordStdio('SEND: $line');
- _process.stdin.add(UTF8.encoder.convert("${line}\n"));
+ _process.stdin.add(UTF8.encoder.convert("$line\n"));
return completer.future;
}
« no previous file with comments | « pkg/analysis_server/test/analysis/notification_navigation_test.dart ('k') | pkg/analysis_server/test/mock_sdk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698