diff --git a/test/evented_test.rb b/test/evented_test.rb index c2a89e1..c74b297 100644 --- a/test/evented_test.rb +++ b/test/evented_test.rb @@ -1,12 +1,12 @@ require File.dirname(__FILE__) + '/test_helper' EventedMysqlTest.new( 10 ) do |test| - test.setup{ Mysql.real_connect('localhost','root','3421260') } + test.setup{ Mysql.real_connect('localhost','root') } test.run! end EventedMysqlTest.new( 10 ) do |test| - test.setup{ Mysql.real_connect('localhost','root','3421260') } + test.setup{ Mysql.real_connect('localhost','root') } test.c_async_query = true test.run! end \ No newline at end of file diff --git a/test/threaded_test.rb b/test/threaded_test.rb index 0db4682..5a70158 100644 --- a/test/threaded_test.rb +++ b/test/threaded_test.rb @@ -1,12 +1,12 @@ require File.dirname(__FILE__) + '/test_helper' ThreadedMysqlTest.new( 10 ) do |test| - test.setup{ Mysql.real_connect('localhost','root','3421260') } + test.setup{ Mysql.real_connect('localhost','root') } test.run! end ThreadedMysqlTest.new( 10 ) do |test| - test.setup{ Mysql.real_connect('localhost','root','3421260') } + test.setup{ Mysql.real_connect('localhost','root') } test.c_async_query = true test.run! end \ No newline at end of file