Index: provider/common/destroy_test.go |
=== modified file 'provider/common/destroy_test.go' |
--- provider/common/destroy_test.go 2014-03-13 07:54:56 +0000 |
+++ provider/common/destroy_test.go 2014-04-14 12:36:13 +0000 |
@@ -93,7 +93,7 @@ |
err = common.Destroy(env) |
c.Assert(err, gc.IsNil) |
_, err = stor.Get("somewhere") |
- c.Assert(err, jc.Satisfies, errors.IsNotFoundError) |
+ c.Assert(err, jc.Satisfies, errors.IsNotFound) |
} |
func (s *DestroySuite) TestCannotTrashStorageWhenNoInstances(c *gc.C) { |
@@ -121,5 +121,5 @@ |
err = common.Destroy(env) |
c.Assert(err, gc.IsNil) |
_, err = stor.Get("elsewhere") |
- c.Assert(err, jc.Satisfies, errors.IsNotFoundError) |
+ c.Assert(err, jc.Satisfies, errors.IsNotFound) |
} |