diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-11-18 08:11:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-11-18 08:11:11 +0000 |
commit | 2544fe6e15d48ed8169f7284d8f6de20731771e4 (patch) | |
tree | a0dfaeece233ca3d54babaa35b56926715dba5aa /test/integration/routing | |
parent | 2b70d977052af13f21e0eb7a719d98a74e210043 (diff) | |
download | redmine-2544fe6e15d48ed8169f7284d8f6de20731771e4.tar.gz redmine-2544fe6e15d48ed8169f7284d8f6de20731771e4.zip |
Issue subject is not updated when you select another issue on time entry form (#24041).
git-svn-id: http://svn.redmine.org/redmine/trunk@15951 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/routing')
-rw-r--r-- | test/integration/routing/timelog_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/routing/timelog_test.rb b/test/integration/routing/timelog_test.rb index b7a219c65..849e6a3d9 100644 --- a/test/integration/routing/timelog_test.rb +++ b/test/integration/routing/timelog_test.rb @@ -27,7 +27,8 @@ class RoutingTimelogsTest < Redmine::RoutingTest should_route 'POST /time_entries' => 'timelog#create' should_route 'GET /time_entries/22/edit' => 'timelog#edit', :id => '22' - should_route 'PUT /time_entries/22' => 'timelog#update', :id => '22' + should_route 'PATCH /time_entries/22/edit' => 'timelog#edit', :id => '22' + should_route 'PATCH /time_entries/22' => 'timelog#update', :id => '22' should_route 'DELETE /time_entries/22' => 'timelog#destroy', :id => '22' end |