Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(manifest): resolve node persistence after removal #4819

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: fix lint
asabya committed Jan 10, 2025
commit 92cbbd2d441e6dd37e3de4e69bb0e5d658523a12
2 changes: 1 addition & 1 deletion pkg/manifest/mantaray/persist_test.go
Original file line number Diff line number Diff line change
@@ -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)
}