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

Unified Diff: tests/html/websql_test.dart

Issue 12340079: Fixing websql test on Dartium checked mode (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
« 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/websql_test.dart
diff --git a/tests/html/websql_test.dart b/tests/html/websql_test.dart
index a989248103b14455cda293f1c6bc10f7973be0b6..601ab1a04b4bda5ebfad52665897e9c7493b482d 100644
--- a/tests/html/websql_test.dart
+++ b/tests/html/websql_test.dart
@@ -47,7 +47,7 @@ Future<SqlResultSet> insert(SqlTransaction transaction, String tableName,
final sql = 'INSERT INTO $tableName ($columnName) VALUES (?)';
transaction.executeSql(sql, [value],
(SqlTransaction tx, SqlResultSet rs) {
- completer.complete(tx);
+ completer.complete(rs);
},
(SqlTransaction tx, SqlError error) {
completer.completeError(error);
« 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