diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-20 19:38:25 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-20 19:38:25 -0500 |
commit | 989cd90d284f3846ef2ca7da3a524a716b4deb2c (patch) | |
tree | 2746b037067dbdb0ac4acf792aa3a3c8e36a3126 /tests | |
parent | 1c9dc18c3512499cee97c9e2f5c60fb8cba540a4 (diff) | |
download | horizon-989cd90d284f3846ef2ca7da3a524a716b4deb2c.tar.gz horizon-989cd90d284f3846ef2ca7da3a524a716b4deb2c.tar.bz2 horizon-989cd90d284f3846ef2ca7da3a524a716b4deb2c.tar.xz horizon-989cd90d284f3846ef2ca7da3a524a716b4deb2c.zip |
tests: Don't shadow +config+ variable
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/spec_helper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/spec/spec_helper.rb b/tests/spec/spec_helper.rb index 47c9a0d..3fa7f0b 100644 --- a/tests/spec/spec_helper.rb +++ b/tests/spec/spec_helper.rb @@ -52,9 +52,9 @@ RSpec.configure do |config| # as the one that triggered the failure. Kernel.srand config.seed - Aruba.configure do |config| - config.fixtures_directories = %w(fixtures) - config.remove_ansi_escape_sequences = false if respond_to? :remove_ansi_escape_sequences= + Aruba.configure do |a_config| + a_config.fixtures_directories = %w(fixtures) + a_config.remove_ansi_escape_sequences = false if respond_to? :remove_ansi_escape_sequences= end end |