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

Correct config path in error message

This commit is contained in:
John Williams 2017-07-06 14:53:23 -05:00
parent a2e864fa13
commit 3e5206f8d1

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