diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-19 09:56:46 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-19 09:56:46 +0000 |
commit | f286a6044be49b88b067f89072618aecc7164caa (patch) | |
tree | 6359dfe601c787be72932e98a862f5b99e98d11f /test/integration/routing/my_test.rb | |
parent | 65a91d13a0ef8a08f2cb118ea0bda716910db6a9 (diff) | |
download | redmine-f286a6044be49b88b067f89072618aecc7164caa.tar.gz redmine-f286a6044be49b88b067f89072618aecc7164caa.zip |
Deprecate and rename rss_* methods to atom_* methods (#15118).
Patch by Mischa The Evil and Marius BÄ‚LTEANU
git-svn-id: http://svn.redmine.org/redmine/trunk@21467 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/routing/my_test.rb')
-rw-r--r-- | test/integration/routing/my_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/routing/my_test.rb b/test/integration/routing/my_test.rb index 2fdb53aad..bf6dfa4ae 100644 --- a/test/integration/routing/my_test.rb +++ b/test/integration/routing/my_test.rb @@ -33,7 +33,7 @@ class RoutingMyTest < Redmine::RoutingTest should_route 'GET /my/api_key' => 'my#show_api_key' should_route 'POST /my/api_key' => 'my#reset_api_key' - should_route 'POST /my/rss_key' => 'my#reset_rss_key' + should_route 'POST /my/atom_key' => 'my#reset_atom_key' should_route 'GET /my/password' => 'my#password' should_route 'POST /my/password' => 'my#password' |