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

Unified Diff: tests/dom/indexeddb_4_test.dart

Issue 10379010: Properly count number of arguments for statics. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
« no previous file with comments | « tests/dom/dom.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/dom/indexeddb_4_test.dart
diff --git a/tests/dom/indexeddb_4_test.dart b/tests/dom/indexeddb_4_test.dart
index 0f66ea3759d94496d20f7dd8dfca962cae0aa0d9..ba2d2fdc3a1ac50368a335c9ab23e884187dd688 100644
--- a/tests/dom/indexeddb_4_test.dart
+++ b/tests/dom/indexeddb_4_test.dart
@@ -67,7 +67,7 @@ class Test {
if (firstKey == null) firstKey = cursor.key;
lastKey = cursor.key;
itemCount += 1;
- Expect.equals('Item ${cursor.key}', cursor.value);
+ Expect.equals('Item ${cursor.key.toStringAsFixed(0)}', cursor.value);
cursor.continueFunction();
} else {
// Done
« no previous file with comments | « tests/dom/dom.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698