]> source.dussan.org Git - redmine.git/commitdiff
fix source indents of test/functional/auth_sources_controller_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 9 Jul 2020 15:18:07 +0000 (15:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 9 Jul 2020 15:18:07 +0000 (15:18 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19870 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/auth_sources_controller_test.rb

index 6dc954c94c0e0e902818fbf95940582de1b64618..4bccb3f0f6e1e30b62e092aa33e169f947ee0176 100644 (file)
@@ -188,11 +188,14 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
   end
 
   def test_autocomplete_for_new_user
-    AuthSource.expects(:search).with('foo').returns([
-      {:login => 'foo1', :firstname => 'John', :lastname => 'Smith', :mail => 'foo1@example.net', :auth_source_id => 1},
-      {:login => 'Smith', :firstname => 'John', :lastname => 'Doe', :mail => 'foo2@example.net', :auth_source_id => 1}
-    ])
-
+    AuthSource.expects(:search).with('foo').returns(
+      [
+        {:login => 'foo1', :firstname => 'John', :lastname => 'Smith',
+         :mail => 'foo1@example.net', :auth_source_id => 1},
+        {:login => 'Smith', :firstname => 'John', :lastname => 'Doe',
+         :mail => 'foo2@example.net', :auth_source_id => 1}
+      ]
+    )
     get :autocomplete_for_new_user, :params => {
         :term => 'foo'
       }