Getting an error while running activerecord test suite

I downloaded the rails edge

cd activerecord
rake test_mysql

I am getting an exception at line 165 block.

Line 169 (
http://github.com/rails/rails/blob/master/activerecord/test/cases/validations/uniqueness_validation_test.rb#L169)
says that if database is not UTF-8 then test will fail.

I think my database is UTF-8. Take a look at this.

What am I missing? What do I need to do so that this test passes.

For the sake of completeness I would a say I have one test in error
( this one) and two other tests are failing. It seems the other two
failing tests are also because of UTF-8 issue.

Thanks

This issue is resolved. For the record I resolved this issue by
creating database through rake task.

rake mysql:drop_databases
rake mysql:build_databases