1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #7 from johnwilliams/test_config_error_typo

Correct config path in error message
This commit is contained in:
George Claghorn 2017-07-06 16:22:21 -04:00 committed by GitHub
commit 87fe9ff1a3

View file

@ -5,7 +5,7 @@ require "yaml"
SERVICE_CONFIGURATIONS = begin
YAML.load_file(File.expand_path("../configurations.yml", __FILE__)).deep_symbolize_keys
rescue Errno::ENOENT
puts "Missing service configuration file in test/services/configurations.yml"
puts "Missing service configuration file in test/service/configurations.yml"
end
module ActiveStorage::Service::SharedServiceTests