Skip to content

Commit

Permalink
gp --exclusion new flag
Browse files Browse the repository at this point in the history
  • Loading branch information
sarao1310 committed Jul 9, 2023
1 parent 8ca7332 commit 44d23ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artifactory/commands/golang/archive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestArchiveProject(t *testing.T) {
}

func TestGetAbsolutePaths(t *testing.T) {
testData := []string{"./dir1/*", "*.txt", "./*/dir2/*"}
testData := []string{filepath.Join(".", "dir1", "*"), "*.txt", filepath.Join("*", "dir2", "*")}
result, err := getAbsolutePaths(testData)
assert.NoError(t, err)
wd, err := os.Getwd()
Expand Down

0 comments on commit 44d23ac

Please sign in to comment.