From bbda6aaf9798e0b114271e59eaf30d2dcbe946c3 Mon Sep 17 00:00:00 2001 From: Hans de Graaff Date: Fri, 20 Dec 2019 09:53:49 +0100 Subject: Fix rubocop warnings Signed-off-by: Hans de Graaff --- test/integration/arches_routes_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/integration/arches_routes_test.rb b/test/integration/arches_routes_test.rb index d654118..47f2897 100644 --- a/test/integration/arches_routes_test.rb +++ b/test/integration/arches_routes_test.rb @@ -9,7 +9,7 @@ class ArchesRoutesTest < ActionDispatch::IntegrationTest test 'view keyworded packages for arch' do arches = %w[alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86] arches.each do |arch| - get ('/arches/' + arch + '/keyworded') + get '/arches/' + arch + '/keyworded' assert_select 'h1', ('Keyworded Packages (' + arch + ')') end end @@ -17,7 +17,7 @@ class ArchesRoutesTest < ActionDispatch::IntegrationTest test 'view stable packages for arch' do arches = %w[alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86] arches.each do |arch| - get ('/arches/' + arch + '/stable') + get '/arches/' + arch + '/stable' assert_select 'h1', ('Newly Stable Packages (' + arch + ')') end end -- cgit v1.2.3-65-gdbad