summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-20 19:38:25 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-20 19:38:25 -0500
commit989cd90d284f3846ef2ca7da3a524a716b4deb2c (patch)
tree2746b037067dbdb0ac4acf792aa3a3c8e36a3126 /tests
parent1c9dc18c3512499cee97c9e2f5c60fb8cba540a4 (diff)
downloadhorizon-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.rb6
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