From c11f213e402e9b9c6d82b1c8b3152bbf5c5d6030 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Wed, 27 Dec 2023 06:07:22 +0000 Subject: [PATCH] Fix RuboCop offense Style/HashSyntax (Don't mix styles in the same hash) introduced in r22551 (#39862). git-svn-id: https://svn.redmine.org/redmine/trunk@22566 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/routing/plugins_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/routing/plugins_test.rb b/test/integration/routing/plugins_test.rb index aeefa43bd..77af654f5 100644 --- a/test/integration/routing/plugins_test.rb +++ b/test/integration/routing/plugins_test.rb @@ -45,8 +45,8 @@ class RoutingPluginsTest < Redmine::RoutingTest assert_equal("/bar_plugin_articles", plugin_articles_path) should_route( 'GET /attachments/plugin_articles/12/edit' => 'attachments#edit_all', - object_id: '12', - object_type: 'plugin_articles' + :object_id => '12', + :object_type => 'plugin_articles' ) end end