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

Unified Diff: client/testing/unittest/unittest.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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: client/testing/unittest/unittest.dart
diff --git a/client/testing/unittest/unittest.dart b/client/testing/unittest/unittest.dart
index 4814cb0734a45fa4ab835d6380f2f42298545585..f69c9c96ece0afb9609a50c1d5e2a8943870a259 100644
--- a/client/testing/unittest/unittest.dart
+++ b/client/testing/unittest/unittest.dart
@@ -61,8 +61,10 @@ _platformCompleteTests(int testsPassed, int testsFailed, int testsErrors) {
}
if (testsPassed == _tests.length) {
- newBody.add("<tr><td colspan='3' class='unittest-pass'>All "
- + testsPassed + " tests passed</td></tr>");
+ newBody.add("""
+ <tr><td colspan='3' class='unittest-pass'>
+ All ${testsPassed} tests passed
+ </td></tr>""");
} else {
newBody.add("""
<tr><td colspan='3'>Total

Powered by Google App Engine
This is Rietveld 408576698