Skip to content

Commit

Permalink
Assume blank password
Browse files Browse the repository at this point in the history
  • Loading branch information
methodmissing committed Sep 6, 2008
1 parent 70c58ce commit 26202b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/evented_test.rb
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions test/threaded_test.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 26202b3

Please sign in to comment.