Skip to content

Commit

Permalink
Fixed that unit tests for MySQL are now run as the "rails" user inste…
Browse files Browse the repository at this point in the history
…ad of root #455 [Eric Hodel]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@419 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Jan 15, 2005
1 parent 51390b8 commit bb92382
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Fixed that unit tests for MySQL are now run as the "rails" user instead of root #455 [Eric Hodel]

* Added validates_associated that enables validation of objects in an unsaved association #398 [Tim Bates]. Example:

class Book < ActiveRecord::Base
Expand Down
4 changes: 2 additions & 2 deletions activerecord/test/connections/native_mysql/connection.rb
Expand Up @@ -10,15 +10,15 @@
ActiveRecord::Base.establish_connection(
:adapter => "mysql",
:host => "localhost",
:username => "root",
:username => "rails",
:password => "",
:database => db1
)

Course.establish_connection(
:adapter => "mysql",
:host => "localhost",
:username => "root",
:username => "rails",
:password => "",
:database => db2
)

0 comments on commit bb92382

Please sign in to comment.