Skip to content

Commit

Permalink
Fix unsupported around(:all) RSpec configuration
Browse files Browse the repository at this point in the history
`around(:all)` is not supported by RSpec and is treated like an
`around(:example)` call.
  • Loading branch information
aldesantis committed Jun 13, 2020
1 parent 8fc2d31 commit cdcd198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/models/solidus_subscriptions/subscription_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
)
end

around(:all) do |e|
around do |e|
successive_skip_limit = SolidusSubscriptions::Config.maximum_successive_skips
total_skip_limit = SolidusSubscriptions::Config.maximum_total_skips

Expand Down

0 comments on commit cdcd198

Please sign in to comment.