changed literal array syntax, as suggested by RuboCop

This commit is contained in:
Hauke Klement
2015-02-16 11:33:03 +01:00
parent 1068b18f41
commit 0bb5dae334
11 changed files with 15 additions and 15 deletions

View File

@ -3,7 +3,7 @@ FactoryGirl.create(:consumer)
FactoryGirl.create(:consumer, name: 'openSAP')
# users
%w[admin external_user teacher].each { |factory_name| FactoryGirl.create(factory_name) }
%w(admin external_user teacher).each { |factory_name| FactoryGirl.create(factory_name) }
# execution environments
ExecutionEnvironment.create_factories