Index: state/api/uniter/unit_test.go |
=== modified file 'state/api/uniter/unit_test.go' |
--- state/api/uniter/unit_test.go 2013-09-13 11:35:33 +0000 |
+++ state/api/uniter/unit_test.go 2013-09-17 18:18:44 +0000 |
@@ -51,7 +51,7 @@ |
c.Assert(status, gc.Equals, params.StatusPending) |
c.Assert(info, gc.Equals, "") |
- err = s.apiUnit.SetStatus(params.StatusStarted, "blah") |
+ err = s.apiUnit.SetStatus(params.StatusStarted, "blah", nil) |
c.Assert(err, gc.IsNil) |
status, info, err = s.wordpressUnit.Status() |
@@ -146,7 +146,7 @@ |
// Change something other than the lifecycle and make sure it's |
// not detected. |
- err = s.apiUnit.SetStatus(params.StatusStarted, "not really") |
+ err = s.apiUnit.SetStatus(params.StatusStarted, "not really", nil) |
c.Assert(err, gc.IsNil) |
wc.AssertNoChange() |