From 22a94d9ac4be7c1ee0482f671cd7d0ae6dd7cca5 Mon Sep 17 00:00:00 2001 From: John Meehan Date: Tue, 5 Jul 2016 15:34:13 +0100 Subject: Fix test to try `spec/` directory as opposed to `app/spec` which I had accidently set it to. Made the change and test still passes. --- railties/test/application/rake/notes_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index a6caf007cd..a94e302099 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -127,8 +127,8 @@ module ApplicationTests end test 'register additional directories' do - app_file "app/spec/spec_helper.rb", "# TODO: note in spec" - app_file "app/spec/models/user_spec.rb", "# TODO: note in model spec" + app_file "spec/spec_helper.rb", "# TODO: note in spec" + app_file "spec/models/user_spec.rb", "# TODO: note in model spec" add_to_config %q{ config.annotations.register_directories("spec") } run_rake_notes do |output, lines| -- cgit v1.2.3