fix: update integration tests for Install/Remove multi-return signature

This commit is contained in:
2026-03-01 00:47:23 +00:00
parent e7018f3602
commit 4e90abc6a3
9 changed files with 40 additions and 40 deletions

View File

@@ -164,7 +164,7 @@ func TestIntegration_Dpkg(t *testing.T) {
t.Run("Install_Unsupported", func(t *testing.T) {
// dpkg install requires a .deb file path, not a package name
// This should fail gracefully
err := mgr.Install(ctx, snack.Targets("tree"))
_, _, err := mgr.Install(ctx, snack.Targets("tree"))
assert.Error(t, err)
})