diff options
author | George Claghorn <george.claghorn@gmail.com> | 2017-07-06 16:22:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 16:22:21 -0400 |
commit | 87fe9ff1a3a0eb1e8248ffc80dbba96945b76484 (patch) | |
tree | c7278d750e5fd3205670a00b28f7e75ebd42bab4 /test/service | |
parent | a2e864fa13c7d3d56a95a2f46d525597f989f938 (diff) | |
parent | 3e5206f8d138492f7f2d94a279f5c42bda7d5ddb (diff) | |
download | rails-87fe9ff1a3a0eb1e8248ffc80dbba96945b76484.tar.gz rails-87fe9ff1a3a0eb1e8248ffc80dbba96945b76484.tar.bz2 rails-87fe9ff1a3a0eb1e8248ffc80dbba96945b76484.zip |
Merge pull request #7 from johnwilliams/test_config_error_typo
Correct config path in error message
Diffstat (limited to 'test/service')
-rw-r--r-- | test/service/shared_service_tests.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/service/shared_service_tests.rb b/test/service/shared_service_tests.rb index dfa0d61656..377670f4a0 100644 --- a/test/service/shared_service_tests.rb +++ b/test/service/shared_service_tests.rb @@ -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 |