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

Unified Diff: tests/html/indexeddb_3_test.dart

Issue 12388094: Removing futureTest test method (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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: tests/html/indexeddb_3_test.dart
diff --git a/tests/html/indexeddb_3_test.dart b/tests/html/indexeddb_3_test.dart
index 486da88dd30f4ba0ccccc71997f1d310599507c0..02ffff378f5f3587e94e161fea2e6f7bb33842cf 100644
--- a/tests/html/indexeddb_3_test.dart
+++ b/tests/html/indexeddb_3_test.dart
@@ -100,14 +100,14 @@ main() {
// Support is tested in indexeddb_1_test
if (IdbFactory.supported) {
var db;
- futureTest('prepare', () {
+ test('prepare', () {
return setupDb().then((result) { db = result; });
});
- futureTest('readAll1', () {
+ test('readAll1', () {
return readAllViaCursor(db);
});
- futureTest('readAll2', () {
+ test('readAll2', () {
return readAllReversedViaCursor(db);
});
}

Powered by Google App Engine
This is Rietveld 408576698