From 1330274657dc59296c556e840a8870dd14bb84ae Mon Sep 17 00:00:00 2001
From: Carlos Antonio da Silva <carlosantoniodasilva@gmail.com>
Date: Fri, 14 Mar 2014 20:57:36 -0300
Subject: Fix assertions

---
 railties/test/application/rake/dbs_test.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/railties/test/application/rake/dbs_test.rb b/railties/test/application/rake/dbs_test.rb
index 35d9c31c1e..6bf49f3d67 100644
--- a/railties/test/application/rake/dbs_test.rb
+++ b/railties/test/application/rake/dbs_test.rb
@@ -132,7 +132,7 @@ module ApplicationTests
                         ActiveRecord::Base.connection_config[:database])
           require "#{app_path}/app/models/book"
           #if structure is not loaded correctly, exception would be raised
-          assert Book.count, 0
+          assert_equal 0, Book.count
         end
       end
 
@@ -157,7 +157,7 @@ module ApplicationTests
           ActiveRecord::Base.establish_connection :test
           require "#{app_path}/app/models/book"
           #if structure is not loaded correctly, exception would be raised
-          assert Book.count, 0
+          assert_equal 0, Book.count
           assert_match(/#{ActiveRecord::Base.configurations['test']['database']}/,
                         ActiveRecord::Base.connection_config[:database])
         end
-- 
cgit v1.2.3