Index: service/datastore/properties_test.go |
diff --git a/service/datastore/properties_test.go b/service/datastore/properties_test.go |
index 2d2361d5d0008b63a502c986b9afc896dde91f6f..ea093db06047e4cd0d67b2fe6272fac26f6906cd 100644 |
--- a/service/datastore/properties_test.go |
+++ b/service/datastore/properties_test.go |
@@ -91,7 +91,7 @@ func TestProperties(t *testing.T) { |
So(pv.Type().String(), ShouldEqual, "PTBlobKey") |
}) |
Convey("datastore Key is distinguished", func() { |
- k := MakeKey("appid", "ns", "kind", "1") |
+ k := KeyContext{"appid", "ns"}.MakeKey("kind", "1") |
pv := MkProperty(k) |
So(pv.Value(), ShouldHaveSameTypeAs, k) |
So(pv.Value().(*Key).Equal(k), ShouldBeTrue) |