Skip to content

Commit 7d4492d

Browse files
committed
expend excluded patterns - fix test
1 parent 32eb306 commit 7d4492d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jas/common_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ func TestFilterUniqueAndConvertToFilesExcludePatterns(t *testing.T) {
171171
},
172172
{
173173
excludePatterns: []string{"*.git*", "*node_modules*", "*target*", "*venv*", "*test*"},
174-
expectedOutput: []string{"**/*.git*/**", "**/*node_modules*/**", "**/*target*/**", "**/*test*/**", "**/*venv*/**"},
174+
expectedOutput: []string{"**/*.git*/**", "**/*node_modules*/**", "**/*target*/**", "**/*test*/**", "**/*venv*/**", "*.git*", "*node_modules*", "*target*", "*venv*", "*test*"},
175175
},
176176
}
177177

0 commit comments

Comments
 (0)