@@ -146,7 +146,7 @@ func TestConfigSet(t *testing.T) {
146146 Registry : map [string ]interface {}{
147147 "username" : "bob" ,
148148 },
149- Routable : true ,
149+ Routable : api . NewRoutable () ,
150150 Created : "2014-01-01T00:00:00UTC" ,
151151 Updated : "2014-01-01T00:00:00UTC" ,
152152 UUID : "de1bf5b5-4a72-4f94-a10c-d2a3741cdf75" ,
@@ -169,7 +169,7 @@ func TestConfigSet(t *testing.T) {
169169 Registry : map [string ]interface {}{
170170 "username" : "bob" ,
171171 },
172- Routable : true ,
172+ Routable : api . NewRoutable () ,
173173 }
174174
175175 actual , err := Set (deis , "example-go" , configVars )
@@ -203,7 +203,7 @@ func TestConfigUnset(t *testing.T) {
203203 CPU : map [string ]interface {}{},
204204 Tags : map [string ]interface {}{},
205205 Registry : map [string ]interface {}{},
206- Routable : true ,
206+ Routable : api . NewRoutable () ,
207207 Created : "2014-01-01T00:00:00UTC" ,
208208 Updated : "2014-01-01T00:00:00UTC" ,
209209 UUID : "de1bf5b5-4a72-4f94-a10c-d2a3741cdf75" ,
@@ -226,7 +226,7 @@ func TestConfigUnset(t *testing.T) {
226226 Registry : map [string ]interface {}{
227227 "username" : nil ,
228228 },
229- Routable : true ,
229+ Routable : api . NewRoutable () ,
230230 }
231231
232232 actual , err := Set (deis , "unset-test" , configVars )
@@ -271,7 +271,7 @@ func TestConfigList(t *testing.T) {
271271 Registry : map [string ]interface {}{
272272 "username" : "bob" ,
273273 },
274- Routable : true ,
274+ Routable : api . NewRoutable () ,
275275 Created : "2014-01-01T00:00:00UTC" ,
276276 Updated : "2014-01-01T00:00:00UTC" ,
277277 UUID : "de1bf5b5-4a72-4f94-a10c-d2a3741cdf75" ,
0 commit comments