From b2209ca59dc8cc0a1157c93ca956d1959b79c465 Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Wed, 3 Apr 2019 08:40:15 +0900 Subject: Auto-correct rubocop offences --- actionpack/test/dispatch/routing_test.rb | 30 +++++++++++----------- .../test/application/zeitwerk_integration_test.rb | 4 +-- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index de0c9f3460..11772a36a3 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -2210,25 +2210,25 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest end end - get '/posts/1/comments' - assert_equal 'comments#index', @response.body - assert_equal '/posts/1/comments', post_comments_path('1') + get "/posts/1/comments" + assert_equal "comments#index", @response.body + assert_equal "/posts/1/comments", post_comments_path("1") - get '/posts/1/comments/new' - assert_equal 'comments#new', @response.body - assert_equal '/posts/1/comments/new', new_post_comment_path('1') + get "/posts/1/comments/new" + assert_equal "comments#new", @response.body + assert_equal "/posts/1/comments/new", new_post_comment_path("1") - get '/posts/1/comments/2' - assert_equal 'comments#show', @response.body - assert_equal '/posts/1/comments/2', post_comment_path('1', '2') + get "/posts/1/comments/2" + assert_equal "comments#show", @response.body + assert_equal "/posts/1/comments/2", post_comment_path("1", "2") - get '/posts/1/comments/2/edit' - assert_equal 'comments#edit', @response.body - assert_equal '/posts/1/comments/2/edit', edit_post_comment_path('1', '2') + get "/posts/1/comments/2/edit" + assert_equal "comments#edit", @response.body + assert_equal "/posts/1/comments/2/edit", edit_post_comment_path("1", "2") - get '/tags/3' - assert_equal 'tags#show', @response.body - assert_equal '/tags/3', tag_path('3') + get "/tags/3" + assert_equal "tags#show", @response.body + assert_equal "/tags/3", tag_path("3") end def test_shallow_deeply_nested_resources diff --git a/railties/test/application/zeitwerk_integration_test.rb b/railties/test/application/zeitwerk_integration_test.rb index 5d2e34433a..dc6db429a9 100644 --- a/railties/test/application/zeitwerk_integration_test.rb +++ b/railties/test/application/zeitwerk_integration_test.rb @@ -181,8 +181,8 @@ class ZeitwerkIntegrationTest < ActiveSupport::TestCase boot("production") assert $zeitwerk_integration_test_user - assert !$zeitwerk_integration_test_lib - assert !$zeitwerk_integration_test_extras + assert_not $zeitwerk_integration_test_lib + assert_not $zeitwerk_integration_test_extras assert WebhookHacks assert WebsocketHacks -- cgit v1.2.3