Skip to content

Commit

Permalink
TestWalkFS: fix unhandled error
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Oct 28, 2024
1 parent 94c0490 commit 38f66a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ func TestWalkFS(t *testing.T) {
}

var b bytes.Buffer
MarshalText(&b, m)
err = MarshalText(&b, m)
if err != nil {
t.Fatalf("error marshaling manifest: %v", err)
}
t.Log(b.String())

// TODO(dmcgowan): always verify, currently hard links not supported
Expand Down

0 comments on commit 38f66a6

Please sign in to comment.