Skip to content

Commit

Permalink
test(config): fix tests for [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Jun 9, 2024
1 parent 17bacf6 commit 4e953a5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ func TestConfig_LoadExample(t *testing.T) {
Filters: filter.Filters{
"S3Bucket": {
filter.Filter{
Type: filter.Glob,
Value: "my-statebucket-*",
Type: filter.Glob,
Value: "my-statebucket-*",
Values: []string{},
},
},
},
Expand Down Expand Up @@ -279,7 +280,7 @@ func TestConfig_FilterMerge(t *testing.T) {
expect := filter.Filters{
"S3Bucket": []filter.Filter{
{
Type: "glob", Value: "my-statebucket-*",
Type: "glob", Value: "my-statebucket-*", Values: []string{},
},
},
"IAMRole": []filter.Filter{
Expand Down

0 comments on commit 4e953a5

Please sign in to comment.