Skip to content

Commit

Permalink
Fix manta test
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferai committed Feb 14, 2018
1 parent 1489c08 commit 901f98f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions physical/manta/manta_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/hashicorp/vault/physical"
"github.com/joyent/triton-go"
"github.com/joyent/triton-go/authentication"
tclient "github.com/joyent/triton-go/client"
tt "github.com/joyent/triton-go/errors"
"github.com/joyent/triton-go/storage"
log "github.com/mgutz/logxi/v1"
)
Expand Down Expand Up @@ -70,7 +70,7 @@ func TestMantaBackend(t *testing.T) {
ForceDelete: true,
})
if err != nil {
if !tclient.IsResourceNotFoundError(err) {
if !tt.IsResourceNotFoundError(err) {
t.Fatal("failed to delete test harness directory")
}
}
Expand Down

0 comments on commit 901f98f

Please sign in to comment.