~axwalk/juju-core/synchronous-bootstrap

« back to all changes in this revision

Viewing changes to worker/provisioner/provisioner_test.go

  • Committer: Dave Cheney
  • Date: 2012-07-11 23:36:16 UTC
  • mfrom: (295.1.4 go-service-rename)
  • Revision ID: david.cheney@canonical.com-20120711233616-1xmxf40zxs22lzne
all: rename service => worker

As discussed in the 03/07/2012 team meeting, among a poor field of
candidates, worker(s) was the prefered name for the code that runs
inside an agent. eg, the Provisioner worker runs inside the 
Provisioning agent.

note: also fixed a gofmt issue in state/ which had been bugging me.

R=niemeyer
CC=
https://codereview.appspot.com/6345084

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
        . "launchpad.net/gocheck"
7
7
        "launchpad.net/juju-core/environs"
8
8
        "launchpad.net/juju-core/environs/dummy"
9
 
        "launchpad.net/juju-core/service/provisioner"
10
9
        "launchpad.net/juju-core/state"
11
10
        "launchpad.net/juju-core/state/testing"
12
11
        coretesting "launchpad.net/juju-core/testing"
 
12
        "launchpad.net/juju-core/worker/provisioner"
13
13
        "strings"
14
14
        stdtesting "testing"
15
15
)