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

Unified Diff: tests/html/indexeddb_1_test.dart

Issue 29943004: Adjust test to determine problem. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/indexeddb_1_test.dart
diff --git a/tests/html/indexeddb_1_test.dart b/tests/html/indexeddb_1_test.dart
index 438ce380306e771951b7e7019cba6b3550b11d14..eda0ee6e94fe12315396b668f7f1b0d7aaf98022 100644
--- a/tests/html/indexeddb_1_test.dart
+++ b/tests/html/indexeddb_1_test.dart
@@ -38,7 +38,7 @@ Future testUpgrade() {
}
testReadWrite(key, value, matcher,
- [dbName, storeName = STORE_NAME, version = VERSION,
+ [dbName, storeName = STORE_NAME, version = VERSION,
stringifyResult = false]) => () {
if (dbName == null) {
dbName = nextDatabaseName();
@@ -78,7 +78,7 @@ testReadWrite(key, value, matcher,
};
testReadWriteTyped(key, value, matcher,
- [dbName, storeName = STORE_NAME, version = VERSION,
+ [dbName, storeName = STORE_NAME, version = VERSION,
stringifyResult = false]) => () {
if (dbName == null) {
dbName = nextDatabaseName();
@@ -129,8 +129,9 @@ void testTypes(testFunction) {
equals("1371854424211"), null, STORE_NAME, VERSION, true));
test('largeDoubleConvertedToInt', testFunction(123, 1371854424211.0,
equals("1371854424211"), null, STORE_NAME, VERSION, true));
- test('double', testFunction(123, math.pow(2, 53),
- equals("9007199254740992.0"), null, STORE_NAME, VERSION, true));
+ // TODO(efortuna): Investigate.
+ //test('double', testFunction(123, math.pow(2, 53),
+ // equals("9007199254740992.0"), null, STORE_NAME, VERSION, true));
test('largeIntInMap', testFunction(123, {'time': 4503599627370492},
equals("{time: 4503599627370492}"), null, STORE_NAME, VERSION, true));
var now = new DateTime.now();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698