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

Unified Diff: go/src/infra/gae/libs/gae/properties.go

Issue 1231863018: Fix DSKey encoding. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: add test 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/gae/helper/serialize_test.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/gae/properties.go
diff --git a/go/src/infra/gae/libs/gae/properties.go b/go/src/infra/gae/libs/gae/properties.go
index ccf1167de5b62fc5369e30dc09b0fab56418cdeb..c7a7fb8c9f77dbad8cb3a3cc934ac35c3359540a 100644
--- a/go/src/infra/gae/libs/gae/properties.go
+++ b/go/src/infra/gae/libs/gae/properties.go
@@ -188,7 +188,7 @@ func (t DSPropertyType) String() string {
case DSPTBlobKey:
return "DSPTBlobKey"
default:
- return "DSPTUnknown"
+ return fmt.Sprintf("DSPTUnknown(%02x)", byte(t))
}
}
« no previous file with comments | « go/src/infra/gae/libs/gae/helper/serialize_test.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698