aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2017-07-06 16:22:21 -0400
committerGitHub <noreply@github.com>2017-07-06 16:22:21 -0400
commit87fe9ff1a3a0eb1e8248ffc80dbba96945b76484 (patch)
treec7278d750e5fd3205670a00b28f7e75ebd42bab4
parenta2e864fa13c7d3d56a95a2f46d525597f989f938 (diff)
parent3e5206f8d138492f7f2d94a279f5c42bda7d5ddb (diff)
downloadrails-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
-rw-r--r--test/service/shared_service_tests.rb2
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