Skip to content

Commit

Permalink
correct file_fixture_path in plugins test_helper.rb
Browse files Browse the repository at this point in the history
`fixture_path` does not end with a slash
  • Loading branch information
y-yagi committed Jun 27, 2015
1 parent 204c45e commit 5469d9e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -20,6 +20,6 @@
# Load fixtures from the engine
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "files"
ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
ActiveSupport::TestCase.fixtures :all
end

0 comments on commit 5469d9e

Please sign in to comment.