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 fd8e78c commit 251fff9
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 @@ -63,6 +63,6 @@ func TestGetAbsolutePaths(t *testing.T) {
assert.NoError(t, err)
wd, err := os.Getwd()
assert.NoError(t, err)
expectedResults := []string{wd + "/dir1/*", wd + "/*.txt", wd + "/*/dir2/*"}
expectedResults := []string{filepath.Join(wd, "dir1", "*"), filepath.Join(wd, "*.txt"), filepath.Join(wd, "*", "dir2", "*")}
assert.ElementsMatch(t, result, expectedResults)
}

0 comments on commit 251fff9

Please sign in to comment.