| Index: service/datastore/properties_test.go
|
| diff --git a/service/datastore/properties_test.go b/service/datastore/properties_test.go
|
| index f814d435f39119ae4d989e5532cfc85ff41aa23b..4f3d94f5f25e8e3810a5281b0548d833ca26a237 100644
|
| --- a/service/datastore/properties_test.go
|
| +++ b/service/datastore/properties_test.go
|
| @@ -152,8 +152,14 @@ func TestDSPropertyMapImpl(t *testing.T) {
|
| v, err := pm.GetMeta("foo")
|
| So(err, ShouldBeNil)
|
| So(v, ShouldEqual, 100)
|
| - So(pm.GetMetaDefault("foo", 100), ShouldEqual, 100)
|
| - So(pm.GetMetaDefault("bar", 100), ShouldEqual, 100)
|
| +
|
| + v, err = GetMetaDefault(pm, "foo", 100)
|
| + So(err, ShouldBeNil)
|
| + So(v, ShouldEqual, 100)
|
| +
|
| + v, err = GetMetaDefault(pm, "bar", 100)
|
| + So(err, ShouldBeNil)
|
| + So(v, ShouldEqual, 100)
|
|
|
| npm, err := pm.Save(false)
|
| So(err, ShouldBeNil)
|
|
|