| Index: filter/dscache/dscache_test.go
|
| diff --git a/filter/dscache/dscache_test.go b/filter/dscache/dscache_test.go
|
| index cc1b606e8e23067a2065d0094f3ca950ce4a8331..6a09b3f7d94155ea1e7b1663d0e6811882010a92 100644
|
| --- a/filter/dscache/dscache_test.go
|
| +++ b/filter/dscache/dscache_test.go
|
| @@ -92,8 +92,8 @@ func TestDSCache(t *testing.T) {
|
|
|
| Convey("basically works", func() {
|
| pm := datastore.PropertyMap{
|
| - "BigData": {datastore.MkProperty([]byte(""))},
|
| - "Value": {datastore.MkProperty("hi")},
|
| + "BigData": datastore.MkProperty([]byte("")),
|
| + "Value": datastore.MkProperty("hi"),
|
| }
|
| encoded := append([]byte{0}, serialize.ToBytes(pm)...)
|
|
|
|
|