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

Unified Diff: impl/memory/datastore_query_execution_test.go

Issue 2011773002: datastore: variadic Get, Put, Exists, Delete. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Created 4 years, 7 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: impl/memory/datastore_query_execution_test.go
diff --git a/impl/memory/datastore_query_execution_test.go b/impl/memory/datastore_query_execution_test.go
index 941e845ebd2bb0aedeb2806e96942898f84bb9f1..77a780fcf66d68ead66e78ba68e14e22a2c9ef2e 100644
--- a/impl/memory/datastore_query_execution_test.go
+++ b/impl/memory/datastore_query_execution_test.go
@@ -523,7 +523,7 @@ func TestQueryExecution(t *testing.T) {
}
}
- if err := data.DeleteMulti(stage.delEnts); err != nil {
+ if err := data.DeleteMulti(stage.delEnts...); err != nil {
panic(err)
}

Powered by Google App Engine
This is Rietveld 408576698