Skip to content

Commit

Permalink
fixed conflicts n fileinfo test
Browse files Browse the repository at this point in the history
  • Loading branch information
oakrizan committed Apr 4, 2024
1 parent 6c69b24 commit e660c3a
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions auditbeat/module/file_integrity/fileinfo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,10 @@ import (
)

func TestNewMetadata(t *testing.T) {
<<<<<<< HEAD
f, err := ioutil.TempFile("", "metadata")
=======
// Can be removed after https://github.com/elastic/beats/issues/37701 is solved
skipOnBuildkiteDarwin(t, "Group check")

f, err := os.CreateTemp(t.TempDir(), "metadata")
>>>>>>> aaa482983c (Deploy K8S Pipeline migration (#38659))
f, err := ioutil.TempFile("", "metadata")
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -103,14 +99,10 @@ func TestNewMetadata(t *testing.T) {
}

func TestSetUIDSetGIDBits(t *testing.T) {
<<<<<<< HEAD
f, err := ioutil.TempFile("", "setuid")
=======
// Can be removed after https://github.com/elastic/beats/issues/37701 is solved
skipOnBuildkiteDarwin(t, "Wheel permission issue")

f, err := os.CreateTemp(t.TempDir(), "setuid")
>>>>>>> aaa482983c (Deploy K8S Pipeline migration (#38659))
f, err := ioutil.TempFile("", "setuid")
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit e660c3a

Please sign in to comment.