| Index: impl/memory/datastore_index_test.go | 
| diff --git a/impl/memory/datastore_index_test.go b/impl/memory/datastore_index_test.go | 
| index e025de3000f2978b5430da4bb4d130bb94aa6e9c..baaf420ec77c9934eda49f25e90c9c4ed785b7a2 100644 | 
| --- a/impl/memory/datastore_index_test.go | 
| +++ b/impl/memory/datastore_index_test.go | 
| @@ -14,7 +14,7 @@ import ( | 
| . "github.com/smartystreets/goconvey/convey" | 
| ) | 
|  | 
| -var fakeKey = key("knd", 10, key("parentKind", "sid")) | 
| +var fakeKey = key("parentKind", "sid", "knd", 10) | 
|  | 
| func TestCollated(t *testing.T) { | 
| t.Parallel() | 
| @@ -296,7 +296,7 @@ func TestIndexEntries(t *testing.T) { | 
| } | 
|  | 
| type dumbItem struct { | 
| -	key   ds.Key | 
| +	key   *ds.Key | 
| props ds.PropertyMap | 
| } | 
|  | 
|  |