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

Unified Diff: LayoutTests/dart/fib.html

Issue 10025040: Use interpolation instead of concatenation. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 8 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: LayoutTests/dart/fib.html
diff --git a/LayoutTests/dart/fib.html b/LayoutTests/dart/fib.html
index 818840a530f45ce82600a9888138d33ebc3dda00..9fd406824fb078fd6b63da3a0381f7b6b6881ce5 100644
--- a/LayoutTests/dart/fib.html
+++ b/LayoutTests/dart/fib.html
@@ -24,7 +24,7 @@ void main() {
if (null !== layoutTestController) {
layoutTestController.dumpAsText();
}
- log("fib(10) = " + fib(10));
+ log("fib(10) = ${fib(10)}");
if (fib(10) != 55) {
log("FAIL");
return;

Powered by Google App Engine
This is Rietveld 408576698