Index: environs/ec2/local_test.go |
=== modified file 'environs/ec2/local_test.go' |
--- environs/ec2/local_test.go 2012-11-26 16:30:30 +0000 |
+++ environs/ec2/local_test.go 2012-11-27 09:19:59 +0000 |
@@ -34,8 +34,8 @@ |
"access-key": "x", |
"secret-key": "x", |
"authorized-keys": "foo", |
- "ca-cert": testing.CACertPEM, |
- "ca-private-key": testing.CAKeyPEM, |
+ "ca-cert": testing.CACert, |
+ "ca-private-key": testing.CAKey, |
} |
Suite(&localServerSuite{ |
@@ -196,7 +196,7 @@ |
policy := t.env.AssignmentPolicy() |
c.Assert(policy, Equals, state.AssignUnused) |
- err := environs.Bootstrap(t.env, true, []byte(testing.CACertPEM+testing.CAKeyPEM)) |
+ err := environs.Bootstrap(t.env, true, []byte(testing.CACert+testing.CAKey)) |
c.Assert(err, IsNil) |
// check that the state holds the id of the bootstrap machine. |