diff --git a/dpkg/dpkg_integration_test.go b/dpkg/dpkg_integration_test.go index f4474ab..327459f 100644 --- a/dpkg/dpkg_integration_test.go +++ b/dpkg/dpkg_integration_test.go @@ -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("nonexistent-pkg-xyzzy")) assert.Error(t, err) }) diff --git a/rpm/rpm_integration_test.go b/rpm/rpm_integration_test.go index f273cff..e0843ee 100644 --- a/rpm/rpm_integration_test.go +++ b/rpm/rpm_integration_test.go @@ -156,7 +156,7 @@ func TestIntegration_RPM(t *testing.T) { // --- Operations rpm doesn't support --- t.Run("Install_Unsupported", func(t *testing.T) { - _, err := mgr.Install(ctx, snack.Targets("tree")) + _, err := mgr.Install(ctx, snack.Targets("nonexistent-pkg-xyzzy")) assert.Error(t, err) })