~wwitzel3/juju-core/009-ha-rsyslog-api

« back to all changes in this revision

Viewing changes to worker/peergrouper/worker_test.go

  • Committer: Wayne Witzel III
  • Date: 2014-05-22 13:23:37 UTC
  • mfrom: (2743.1.10 ha-rsyslog-api)
  • Revision ID: wayne.witzel@canonical.com-20140522132337-m9py79a81mjdm9su
merge mfoord

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
        "launchpad.net/juju-core/juju/testing"
16
16
        statetesting "launchpad.net/juju-core/state/testing"
17
17
        coretesting "launchpad.net/juju-core/testing"
18
 
        "launchpad.net/juju-core/testing/testbase"
19
18
        "launchpad.net/juju-core/utils/voyeur"
20
19
        "launchpad.net/juju-core/worker"
21
20
)
63
62
}
64
63
 
65
64
type workerSuite struct {
66
 
        testbase.LoggingSuite
 
65
        coretesting.BaseSuite
67
66
}
68
67
 
69
68
var _ = gc.Suite(&workerSuite{})
70
69
 
71
70
func (s *workerSuite) SetUpTest(c *gc.C) {
72
 
        s.LoggingSuite.SetUpTest(c)
 
71
        s.BaseSuite.SetUpTest(c)
73
72
        resetErrors()
74
73
}
75
74