Skip to content

Commit

Permalink
Fix incorrect previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabby committed Oct 11, 2024
1 parent e246019 commit 3322126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/anony/model_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def initialize(model_class, &block)
# @example
# Anony::ModelConfig.new(Manager).apply(Manager.new)
def apply(instance)
return Result.skipped(instance, self) if @skip_filter && instance.instance_exec(&@skip_filter)
return Result.skipped(instance) if @skip_filter && instance.instance_exec(&@skip_filter)

@strategy.apply(instance)
end
Expand Down

0 comments on commit 3322126

Please sign in to comment.