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

Unified Diff: test/db/e2e/db_test_impl.dart

Issue 2731933004: Remove FilterRelation.In / "property IN" queries, upgrade googleapis{,_beta} dependencies (Closed)
Patch Set: add pubspec.yaml update Created 3 years, 9 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 | « test/datastore/e2e/datastore_test_impl.dart ('k') | test/db/properties_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/db/e2e/db_test_impl.dart
diff --git a/test/db/e2e/db_test_impl.dart b/test/db/e2e/db_test_impl.dart
index 7ffd11233aaefa30f62581be9023d823bfd3eb58..8757f67ab0408298555f0beb482eceba0a9183d8 100644
--- a/test/db/e2e/db_test_impl.dart
+++ b/test/db/e2e/db_test_impl.dart
@@ -514,10 +514,9 @@ runTests(db.DatastoreDB store, String namespace) {
},
// Filter lists
- /* FIXME: TODO: FIXME: "IN" not supported in public proto/apiary */
() async {
var query = store.query(User, partition: partition)
- ..filter('languages IN', ['foo'])
+ ..filter('languages =', 'foo')
..order('name')
..run();
var models = await runQueryWithExponentialBackoff(
@@ -526,7 +525,7 @@ runTests(db.DatastoreDB store, String namespace) {
},
() async {
var query = store.query(User, partition: partition)
- ..filter('languages IN', ['bar'])
+ ..filter('languages =', 'bar')
..order('name')
..run();
var models = await runQueryWithExponentialBackoff(
« no previous file with comments | « test/datastore/e2e/datastore_test_impl.dart ('k') | test/db/properties_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698