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

Unified Diff: go/src/infra/gae/libs/wrapper/memory/testing_utils_test.go

Issue 1229503007: Roll infra/go/src/github.com/luci/luci-go/ to b85c6dd748361e8244122faac44b5beefcd2db37. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: fix tests Created 5 years, 5 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 | « go/src/infra/gae/libs/wrapper/memory/plist.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: go/src/infra/gae/libs/wrapper/memory/testing_utils_test.go
diff --git a/go/src/infra/gae/libs/wrapper/memory/testing_utils_test.go b/go/src/infra/gae/libs/wrapper/memory/testing_utils_test.go
index 2e172bcabaf2e8def826100fbe80a52374ba8593..59fc990dbf2174e07c9447c6be1615fbbe7071fe 100644
--- a/go/src/infra/gae/libs/wrapper/memory/testing_utils_test.go
+++ b/go/src/infra/gae/libs/wrapper/memory/testing_utils_test.go
@@ -12,7 +12,7 @@ import (
"appengine/datastore"
- "github.com/luci/luci-go/common/funnybase"
+ "github.com/luci/luci-go/common/cmpbin"
)
type kv struct{ k, v []byte }
@@ -81,9 +81,9 @@ func cat(bytethings ...interface{}) []byte {
for _, thing := range bytethings {
switch x := thing.(type) {
case int, int64:
- funnybase.Write(buf, reflect.ValueOf(x).Int())
+ cmpbin.WriteInt(buf, reflect.ValueOf(x).Int())
case uint, uint64:
- funnybase.WriteUint(buf, reflect.ValueOf(x).Uint())
+ cmpbin.WriteUint(buf, reflect.ValueOf(x).Uint())
case float64:
writeFloat64(buf, x)
case byte, propValType:
« no previous file with comments | « go/src/infra/gae/libs/wrapper/memory/plist.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698