Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2768)

Unified Diff: environs/instances/image_test.go

Issue 9738043: cmd/jujud: do not change password
Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « environs/instances/image.go ('k') | environs/interface.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environs/instances/image_test.go
=== modified file 'environs/instances/image_test.go'
--- environs/instances/image_test.go 2013-05-20 03:58:49 +0000
+++ environs/instances/image_test.go 2013-06-18 05:32:06 +0000
@@ -162,18 +162,14 @@
instanceTypes: []InstanceType{
{Id: "1", Name: "it-1", Arches: []string{"amd64"}, VType: &pv, Mem: 512},
},
- instanceTypeId: "1",
- instanceTypeName: "it-1",
},
{
desc: "multiple images exists in metadata, use most recent",
region: "test",
imageId: "ami-00000035",
instanceTypes: []InstanceType{
- {Id: "1", Name: "it-1", Arches: []string{"amd64"}, VType: &hvm, Mem: 512},
+ {Id: "1", Name: "it-1", Arches: []string{"amd64"}, VType: &hvm, Mem: 512, CpuCores: 2},
},
- instanceTypeId: "1",
- instanceTypeName: "it-1",
},
{
desc: "no image exists in metadata",
@@ -228,8 +224,9 @@
continue
}
c.Check(spec.Image.Id, Equals, t.imageId)
- c.Check(spec.InstanceTypeId, Equals, t.instanceTypeId)
- c.Check(spec.InstanceTypeName, Equals, t.instanceTypeName)
+ if len(t.instanceTypes) == 1 {
+ c.Check(spec.InstanceType, DeepEquals, t.instanceTypes[0])
+ }
}
}
« no previous file with comments | « environs/instances/image.go ('k') | environs/interface.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b