| Index: go/src/infra/gae/libs/meta/eg_test.go
 | 
| diff --git a/go/src/infra/gae/libs/meta/eg_test.go b/go/src/infra/gae/libs/meta/eg_test.go
 | 
| index 11e74108e9e55f9d6db21abd9a81f22920587fb9..441b024429b04b68ad8405b311e534cebfc95de4 100644
 | 
| --- a/go/src/infra/gae/libs/meta/eg_test.go
 | 
| +++ b/go/src/infra/gae/libs/meta/eg_test.go
 | 
| @@ -9,8 +9,8 @@ import (
 | 
|  
 | 
|  	"golang.org/x/net/context"
 | 
|  
 | 
| -	"infra/gae/libs/gae"
 | 
| -	"infra/gae/libs/gae/memory"
 | 
| +	"infra/gae/libs/wrapper"
 | 
| +	"infra/gae/libs/wrapper/memory"
 | 
|  
 | 
|  	. "github.com/smartystreets/goconvey/convey"
 | 
|  )
 | 
| @@ -20,7 +20,7 @@ func TestGetEntityGroupVersion(t *testing.T) {
 | 
|  
 | 
|  	Convey("GetEntityGroupVersion", t, func() {
 | 
|  		c := memory.Use(context.Background())
 | 
| -		rds := gae.GetRDS(c)
 | 
| +		ds := wrapper.GetDS(c)
 | 
|  
 | 
|  		type A struct {
 | 
|  			ID  int64 `datastore:"-" goon:"id"`
 | 
| @@ -28,24 +28,24 @@ func TestGetEntityGroupVersion(t *testing.T) {
 | 
|  		}
 | 
|  
 | 
|  		a := &A{Val: 10}
 | 
| -		aKey, err := rds.Put(rds.NewKey("A", "", 0, nil), a)
 | 
| +		aKey, err := ds.Put(a)
 | 
|  		So(err, ShouldBeNil)
 | 
|  
 | 
|  		v, err := GetEntityGroupVersion(c, aKey)
 | 
|  		So(err, ShouldBeNil)
 | 
|  		So(v, ShouldEqual, 1)
 | 
|  
 | 
| -		So(rds.Delete(aKey), ShouldBeNil)
 | 
| +		So(ds.Delete(aKey), ShouldBeNil)
 | 
|  
 | 
| -		v, err = GetEntityGroupVersion(c, rds.NewKey("madeUp", "thing", 0, aKey))
 | 
| +		v, err = GetEntityGroupVersion(c, ds.NewKey("madeUp", "thing", 0, aKey))
 | 
|  		So(err, ShouldBeNil)
 | 
|  		So(v, ShouldEqual, 2)
 | 
|  
 | 
| -		v, err = GetEntityGroupVersion(c, rds.NewKey("madeUp", "thing", 0, nil))
 | 
| +		v, err = GetEntityGroupVersion(c, ds.NewKey("madeUp", "thing", 0, nil))
 | 
|  		So(err, ShouldBeNil)
 | 
|  		So(v, ShouldEqual, 0)
 | 
|  
 | 
| -		tDs := rds.(gae.Testable)
 | 
| +		tDs := ds.(wrapper.Testable)
 | 
|  		tDs.BreakFeatures(nil, "Get")
 | 
|  
 | 
|  		v, err = GetEntityGroupVersion(c, aKey)
 | 
| 
 |