Skip to content

Commit

Permalink
fix(condition): Update Wrapped Error in MetaNegate Inspector (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshlbrd authored Jul 27, 2024
1 parent dfbc678 commit 9ac1bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion condition/meta_negate.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func newMetaNegate(ctx context.Context, cfg config.Config) (*metaNegate, error)

i, err := newInspector(ctx, conf.Inspector)
if err != nil {
return nil, fmt.Errorf("condition: meta_for_each: %v", err)
return nil, fmt.Errorf("condition: meta_negate: %v", err)
}

meta := metaNegate{
Expand Down

0 comments on commit 9ac1bd1

Please sign in to comment.