diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 6b099eb361b262594c48d422dab8ebbd0a2a391d..8cbad8c7797b2bea29e98e4796587a53f29a510a 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,3 +1,7 @@ +*SVN* + +* Fix test database name typo. [Marcel Molina Jr.] + *1.1.2* (April 9th, 2005) * Rely on Active Record 1.14.2 diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index 953e47302ad94a970de08842513a7c353d486ada..07219e9dd2e4d057e09a0e3ce14973624a391cac 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -34,8 +34,8 @@ SCHEMA_PATH = File.join(File.dirname(__FILE__), *%w(test fixtures db_definitions desc 'Build the MySQL test database' task :build_database do - %x( mysqladmin create activewebservice_unittest ) - %x( mysql activewebservice_unittest < #{File.join(SCHEMA_PATH, 'mysql.sql')} ) + %x( mysqladmin create actionwebservice_unittest ) + %x( mysql actionwebservice_unittest < #{File.join(SCHEMA_PATH, 'mysql.sql')} ) end @@ -168,4 +168,4 @@ task :release => [ :package ] do puts release_command system(release_command) end -end \ No newline at end of file +end diff --git a/actionwebservice/test/abstract_unit.rb b/actionwebservice/test/abstract_unit.rb index 6862d222e48e4ff5114eb0478098e7bf7a1f9556..392951ede7131af778308b98cd6a6adbaf52fcd8 100644 --- a/actionwebservice/test/abstract_unit.rb +++ b/actionwebservice/test/abstract_unit.rb @@ -24,7 +24,7 @@ :adapter => "mysql", :username => "rails", :encoding => "utf8", - :database => "activewebservice_unittest" + :database => "actionwebservice_unittest" ) ActiveRecord::Base.connection @@ -35,4 +35,4 @@ class ActionController::TestRequest def raw_post super end -end \ No newline at end of file +end