From 59467404d9a4b5d54f7e151b520e74c990c78531 Mon Sep 17 00:00:00 2001 From: ferrreo Date: Thu, 11 Apr 2024 17:15:20 +0100 Subject: [PATCH] Update command_test.go --- command/command_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/command/command_test.go b/command/command_test.go index 23e3ae6..ff5c0ee 100644 --- a/command/command_test.go +++ b/command/command_test.go @@ -25,7 +25,7 @@ func Test_getCommand(t *testing.T) { osType: types.Ubuntu, packageName: []string{"testPackage"}, }, - want: "sudo -S apt install testPackage", + want: "sudo -S nala install testPackage", wantErr: false, }, { @@ -35,7 +35,7 @@ func Test_getCommand(t *testing.T) { osType: types.Arch, packageName: []string{"testPackage"}, }, - want: "apx --aur install testPackage", + want: "apx pikman-arch-linux install testPackage", wantErr: false, }, { @@ -45,7 +45,7 @@ func Test_getCommand(t *testing.T) { osType: types.Arch, packageName: []string{"--name testName", "testPackage"}, }, - want: "apx --aur install --name testName testPackage", + want: "apx pikman-arch-linux install --name testName testPackage", wantErr: false, }, {