~rogpeppe/juju-core/323-machineagent-api-client

« back to all changes in this revision

Viewing changes to environs/ec2/export_test.go

  • Committer: Tarmac
  • Author(s): Tim Penhey
  • Date: 2013-06-17 22:06:54 UTC
  • mfrom: (1274.3.10 instance-id)
  • Revision ID: tarmac-20130617220654-1d7y34f00629h8cv
[r=thumper] Move state.InstanceId to instance.Id

Very mechanical change, just imports, and occasional variable renames.

https://codereview.appspot.com/10325043/

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
        "launchpad.net/juju-core/environs/imagemetadata"
13
13
        "launchpad.net/juju-core/environs/jujutest"
14
14
        "launchpad.net/juju-core/instance"
15
 
        "launchpad.net/juju-core/state"
16
15
        "launchpad.net/juju-core/utils"
17
16
        "net/http"
18
17
)
19
18
 
20
19
type BootstrapState struct {
21
 
        StateInstances []state.InstanceId
 
20
        StateInstances []instance.Id
22
21
}
23
22
 
24
23
func LoadState(e environs.Environ) (*BootstrapState, error) {