~mfoord/juju-core/tests-replset

« back to all changes in this revision

Viewing changes to utils/ssh/fingerprint_test.go

  • Committer: Michael Foord
  • Date: 2014-05-22 15:16:56 UTC
  • mfrom: (2745.1.30 juju-core)
  • Revision ID: michael.foord@canonical.com-20140522151656-1l0z4p9puke9drsp
Merge existing rsyslog work

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
import (
7
7
        gc "launchpad.net/gocheck"
8
8
 
9
 
        "launchpad.net/juju-core/testing/testbase"
 
9
        "launchpad.net/juju-core/testing"
10
10
        "launchpad.net/juju-core/utils/ssh"
11
11
        sshtesting "launchpad.net/juju-core/utils/ssh/testing"
12
12
)
13
13
 
14
14
type FingerprintSuite struct {
15
 
        testbase.LoggingSuite
 
15
        testing.BaseSuite
16
16
}
17
17
 
18
18
var _ = gc.Suite(&FingerprintSuite{})