aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/arches_routes_test.rb')
-rw-r--r--test/integration/arches_routes_test.rb4
1 files changed, 2 insertions, 2 deletions
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