From 5a0dddda0980cefbaf80e9f8f10369f62a1d19d8 Mon Sep 17 00:00:00 2001
From: Teo Ljungberg <teo@teoljungberg.com>
Date: Sun, 28 Feb 2016 23:59:32 +0100
Subject: Address ruby warnings

- Ambiguous first argument
- Mismatched indentation
---
 railties/test/application/integration_test_case_test.rb |  2 +-
 railties/test/generators/channel_generator_test.rb      | 16 ++++++++--------
 2 files changed, 9 insertions(+), 9 deletions(-)

(limited to 'railties/test')

diff --git a/railties/test/application/integration_test_case_test.rb b/railties/test/application/integration_test_case_test.rb
index 40a79fc636..d106d5159a 100644
--- a/railties/test/application/integration_test_case_test.rb
+++ b/railties/test/application/integration_test_case_test.rb
@@ -40,7 +40,7 @@ module ApplicationTests
 
       output = Dir.chdir(app_path) { `bin/rails test 2>&1` }
       assert_equal 0, $?.to_i, output
-      assert_match /0 failures, 0 errors/, output
+      assert_match(/0 failures, 0 errors/, output)
     end
   end
 end
diff --git a/railties/test/generators/channel_generator_test.rb b/railties/test/generators/channel_generator_test.rb
index e31736a74c..cda9e8b910 100644
--- a/railties/test/generators/channel_generator_test.rb
+++ b/railties/test/generators/channel_generator_test.rb
@@ -6,16 +6,16 @@ class ChannelGeneratorTest < Rails::Generators::TestCase
   tests Rails::Generators::ChannelGenerator
 
   def test_application_cable_skeleton_is_created
-     run_generator ['books']
+    run_generator ['books']
 
-     assert_file "app/channels/application_cable/channel.rb" do |cable|
-       assert_match(/module ApplicationCable\n  class Channel < ActionCable::Channel::Base\n/, cable)
-     end
+    assert_file "app/channels/application_cable/channel.rb" do |cable|
+      assert_match(/module ApplicationCable\n  class Channel < ActionCable::Channel::Base\n/, cable)
+    end
 
-     assert_file "app/channels/application_cable/connection.rb" do |cable|
-       assert_match(/module ApplicationCable\n  class Connection < ActionCable::Connection::Base\n/, cable)
-     end
-   end
+    assert_file "app/channels/application_cable/connection.rb" do |cable|
+      assert_match(/module ApplicationCable\n  class Connection < ActionCable::Connection::Base\n/, cable)
+    end
+  end
 
   def test_channel_is_created
     run_generator ['chat']
-- 
cgit v1.2.3