| Index: service/datastore/raw_interface_test.go
|
| diff --git a/service/datastore/raw_interface_test.go b/service/datastore/raw_interface_test.go
|
| index 8bfac8a42693e8945cd26acf2d69d61e4f7638d1..475d16af72ea34f71b8cd5eb6e8db19fe29b5c42 100644
|
| --- a/service/datastore/raw_interface_test.go
|
| +++ b/service/datastore/raw_interface_test.go
|
| @@ -31,8 +31,8 @@ func TestMultiMetaGetter(t *testing.T) {
|
|
|
| Convey("stuff", func() {
|
| pmaps := []PropertyMap{{}, nil, {}}
|
| - pmaps[0].SetMeta("hi", "thing")
|
| - pmaps[2].SetMeta("key", 100)
|
| + So(pmaps[0].SetMeta("hi", "thing"), ShouldBeNil)
|
| + So(pmaps[2].SetMeta("key", 100), ShouldBeNil)
|
| mmg := NewMultiMetaGetter(pmaps)
|
|
|
| // oob is OK
|
|
|