| Index: impl/memory/memcache_test.go
|
| diff --git a/impl/memory/memcache_test.go b/impl/memory/memcache_test.go
|
| index 441abe58a6eb86cbfd2c6baaf22fa3c60b3d550b..aa0c17d8c776b73a111f0b0e34c0eb4f91f34132 100644
|
| --- a/impl/memory/memcache_test.go
|
| +++ b/impl/memory/memcache_test.go
|
| @@ -185,11 +185,10 @@ func TestMemcache(t *testing.T) {
|
| So(stats.Misses, ShouldEqual, 1)
|
| So(stats.ByteHits, ShouldEqual, 4*4)
|
| So(mci.data.casID, ShouldEqual, 1)
|
| - So(mci.data.items["sup"], ShouldResemble, &mcItem{
|
| - key: "sup",
|
| + So(mci.data.items["sup"], ShouldResemble, &mcDataItem{
|
| value: []byte("cool"),
|
| - expiration: time.Duration(curTime.Add(time.Second * 2).UnixNano()),
|
| - CasID: 1,
|
| + expiration: curTime.Add(time.Second * 2).Truncate(time.Second),
|
| + casID: 1,
|
| })
|
|
|
| getItm := mc.NewItem("sup")
|
|
|