diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-01-25 05:38:33 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-01-25 05:38:33 +0000 |
commit | c99bb27e27e3c32ca5aa174de238fe3adf089310 (patch) | |
tree | 08c94446e85ecba3bec0167ce4571260fb9652a3 /test/integration/lib/redmine/hook_test.rb | |
parent | f803778cde85c6d58f1e5d8740d3e46852f39a0e (diff) | |
download | redmine-c99bb27e27e3c32ca5aa174de238fe3adf089310.tar.gz redmine-c99bb27e27e3c32ca5aa174de238fe3adf089310.zip |
Add Propshaft library to enable the asset pipeline without modifying existing assets (#39111).
Patch by Takashi Kato (@tohosaku).
git-svn-id: https://svn.redmine.org/redmine/trunk@22626 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/lib/redmine/hook_test.rb')
-rw-r--r-- | test/integration/lib/redmine/hook_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/lib/redmine/hook_test.rb b/test/integration/lib/redmine/hook_test.rb index 9eacded52..e7f2fa35a 100644 --- a/test/integration/lib/redmine/hook_test.rb +++ b/test/integration/lib/redmine/hook_test.rb @@ -102,8 +102,8 @@ class HookTest < Redmine::IntegrationTest assert_response :success assert_select 'p', :text => 'ContentForInsideHook content' assert_select 'head' do - assert_select 'script[src="/plugin_assets/test_plugin/javascripts/test_plugin.js"]' - assert_select 'link[href="/plugin_assets/test_plugin/stylesheets/test_plugin.css"]' + assert_select 'script[src="/assets/plugin_assets/test_plugin/test_plugin.js"]' + assert_select 'link[href="/assets/plugin_assets/test_plugin/test_plugin.css"]' end end |