Skip to content
Snippets Groups Projects
Commit c4f60cc6 authored by Sydney Anne Erickson's avatar Sydney Anne Erickson :chipmunk:
Browse files

kv_test.go Print -> Printf

parent a0b176f8
No related branches found
No related tags found
3 merge requests!510Release,!226WIP: Api2.0,!207WIP: Client Restructure
...@@ -197,6 +197,6 @@ func TestVersionedKV_Set(t *testing.T) { ...@@ -197,6 +197,6 @@ func TestVersionedKV_Set(t *testing.T) {
o := &Object{} o := &Object{}
err = kv.Get(key, o) err = kv.Get(key, o)
if err != nil { if err != nil {
t.Error("data store didn't have anything in the key: %+v", err) t.Errorf("data store didn't have anything in the key: %+v", err)
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment