aboutsummaryrefslogtreecommitdiff
path: root/reachability/integration_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'reachability/integration_test.go')
-rw-r--r--reachability/integration_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/reachability/integration_test.go b/reachability/integration_test.go
index 079ce5fc..c7c5c63d 100644
--- a/reachability/integration_test.go
+++ b/reachability/integration_test.go
@@ -236,9 +236,9 @@ func TestCheckConnectedMissingObject(t *testing.T) {
t.Fatal("expected error")
}
- var missing *reachability.ErrObjectMissing
+ var missing *reachability.ObjectMissingError
if !errors.As(err, &missing) {
- t.Fatalf("expected ErrObjectMissing, got %T (%v)", err, err)
+ t.Fatalf("expected ObjectMissingError, got %T (%v)", err, err)
}
if missing.OID != treeID {