Index: environs/jujutest/livetests.go |
=== modified file 'environs/jujutest/livetests.go' |
--- environs/jujutest/livetests.go 2012-10-19 12:34:32 +0000 |
+++ environs/jujutest/livetests.go 2012-11-13 09:20:28 +0000 |
@@ -20,9 +20,12 @@ |
// in the suite, stored in Env, and Destroyed after the suite has completed. |
type LiveTests struct { |
coretesting.LoggingSuite |
- Environs *environs.Environs |
- Name string |
- Env environs.Environ |
+ |
+ // Config holds the configuration for opening an environment. |
+ Config *config.Config |
+ |
+ // Env holds the currently opened environment. |
+ Env environs.Environ |
// Attempt holds a strategy for waiting until the environment |
// becomes logically consistent. |
@@ -41,8 +44,8 @@ |
func (t *LiveTests) SetUpSuite(c *C) { |
t.LoggingSuite.SetUpSuite(c) |
- e, err := t.Environs.Open(t.Name) |
- c.Assert(err, IsNil, Commentf("opening environ %q", t.Name)) |
+ e, err := environs.New(t.Config) |
+ c.Assert(err, IsNil, Commentf("opening environ %#v", t.Config.AllAttrs())) |
c.Assert(e, NotNil) |
t.Env = e |
c.Logf("environment configuration: %#v", publicAttrs(e)) |