Skip to content

Commit

Permalink
remove non-existent linux checks
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Kolberg <[email protected]>
  • Loading branch information
amdprophet committed Oct 19, 2024
1 parent 13fdcef commit aa8a6c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion install-script/test/check_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

"github.com/joho/godotenv"
"github.com/stretchr/testify/assert"
"gopkg.in/yaml.v3"
)

func checkACLAvailability(c check) bool {
Expand Down
6 changes: 2 additions & 4 deletions install-script/test/install_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ func TestInstallScript(t *testing.T) {
checkBinaryNotCreated,
checkConfigNotCreated,
checkUserConfigNotCreated,
checkUserNotExists,
checkGroupNotExists,
}

for _, spec := range []testSpec{
Expand All @@ -28,8 +26,8 @@ func TestInstallScript(t *testing.T) {
options: installOptions{
skipInstallToken: true,
},
preChecks: notInstalledChecks,
postChecks: notInstalledChecks,
preChecks: notInstalledChecks,
postChecks: notInstalledChecks,
installCode: 1,
},
{
Expand Down

0 comments on commit aa8a6c9

Please sign in to comment.