Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
asabya committed Sep 13, 2024
1 parent 6e5158f commit 0069db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/manifest/mantaray/persist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func TestPersistRemove(t *testing.T) {
nnn := mantaray.NewNodeRef(ref)
for i := 0; i < len(tc.toRemove); i++ {
c := tc.toRemove[i]
n, err = nnn.LookupNode(ctx, c, ls)
_, err = nnn.LookupNode(ctx, c, ls)
if !errors.Is(err, mantaray.ErrNotFound) {
t.Fatalf("expected not found error, got %v", err)
}
Expand Down

0 comments on commit 0069db3

Please sign in to comment.