~james-page/ubuntu/wily/juju-core/mir-fixes

« back to all changes in this revision

Viewing changes to src/launchpad.net/juju-core/state/api/environment/environment_test.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-03-28 08:58:42 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20140328085842-cyzrgc120bdfxwj0
Tags: 1.17.7-0ubuntu1
* New upstream point release, including fixes for:
  - no debug log with all providers on Ubuntu 14.04 (LP: #1294776).
* d/control: Add cpu-checker dependency to juju-local (LP: #1297077).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        gc "launchpad.net/gocheck"
8
8
 
9
9
        jujutesting "launchpad.net/juju-core/juju/testing"
10
 
        commontesting "launchpad.net/juju-core/state/api/common/testing"
 
10
        apitesting "launchpad.net/juju-core/state/api/testing"
11
11
)
12
12
 
13
13
type environmentSuite struct {
14
14
        jujutesting.JujuConnSuite
15
 
        *commontesting.EnvironWatcherTest
 
15
        *apitesting.EnvironWatcherTests
16
16
}
17
17
 
18
18
var _ = gc.Suite(&environmentSuite{})
25
25
        environmentAPI := stateAPI.Environment()
26
26
        c.Assert(environmentAPI, gc.NotNil)
27
27
 
28
 
        s.EnvironWatcherTest = commontesting.NewEnvironWatcherTest(
29
 
                environmentAPI, s.State, s.BackingState, commontesting.NoSecrets)
 
28
        s.EnvironWatcherTests = apitesting.NewEnvironWatcherTests(
 
29
                environmentAPI, s.BackingState, apitesting.NoSecrets)
30
30
}