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

Unified Diff: server/logdog/storage/bigtable/storage_test.go

Issue 1672833003: LogDog: Add log rendering view. Base URL: https://github.com/luci/luci-go@master
Patch Set: Created 4 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: server/logdog/storage/bigtable/storage_test.go
diff --git a/server/logdog/storage/bigtable/storage_test.go b/server/logdog/storage/bigtable/storage_test.go
index 734a357b021f77ddf382cbcc7332461c97422e2c..ffb0169d27f13c61c5db4fe92ce601b9f5d24106 100644
--- a/server/logdog/storage/bigtable/storage_test.go
+++ b/server/logdog/storage/bigtable/storage_test.go
@@ -73,7 +73,7 @@ func (t *btTableTest) putLogData(c context.Context, rk *rowKey, d []byte) error
return nil
}
-func (t *btTableTest) getLogData(c context.Context, rk *rowKey, limit int, keysOnly bool, cb btGetCallback) error {
+func (t *btTableTest) getLogData(c context.Context, rk *rowKey, limit int64, keysOnly bool, cb btGetCallback) error {
if t.err != nil {
return t.err
}
@@ -166,7 +166,7 @@ func TestStorage(t *testing.T) {
table: &bt,
}
- get := func(path string, index int, limit int) ([]string, error) {
+ get := func(path string, index int, limit int64) ([]string, error) {
req := storage.GetRequest{
Path: types.StreamPath(path),
Index: types.MessageIndex(index),

Powered by Google App Engine
This is Rietveld 408576698