Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1)

Unified Diff: provider/common/destroy_test.go

Issue 87560043: errors: Improve tests, unify interfaces, wrapping (Closed)
Patch Set: errors: Improve tests, unify interfaces, wrapping Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « provider/azure/storage_test.go ('k') | provider/ec2/storage.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
}
« no previous file with comments | « provider/azure/storage_test.go ('k') | provider/ec2/storage.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b