Skip to content

Commit

Permalink
Fixed typo in test name and CHANGELOG [#3017 state:resolved]
Browse files Browse the repository at this point in the history
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
  • Loading branch information
arthurgeek authored and lifo committed Aug 10, 2009
1 parent e202c6c commit 55b5cf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions activerecord/CHANGELOG
Expand Up @@ -2199,7 +2199,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing]

* Escape database name in MySQL adapter when creating and dropping databases. #3409 [anna@wota.jp]

* Disambiguate table names for columns in validates_uniquness_of's WHERE clause. #3423 [alex.borovsky@gmail.com]
* Disambiguate table names for columns in validates_uniqueness_of's WHERE clause. #3423 [alex.borovsky@gmail.com]

* .with_scope imposed create parameters now bypass attr_protected [Tobias Lütke]

Expand Down Expand Up @@ -3714,7 +3714,7 @@ in effect. Added :readonly finder constraint. Calling an association collectio

* Escape database name in MySQL adapter when creating and dropping databases. #3409 [anna@wota.jp]

* Disambiguate table names for columns in validates_uniquness_of's WHERE clause. #3423 [alex.borovsky@gmail.com]
* Disambiguate table names for columns in validates_uniqueness_of's WHERE clause. #3423 [alex.borovsky@gmail.com]

* .with_scope imposed create parameters now bypass attr_protected [Tobias Lütke]

Expand Down
Expand Up @@ -59,7 +59,7 @@ def test_validate_uniqueness
assert t2.save, "Should now save t2 as unique"
end

def test_validates_uniquness_with_newline_chars
def test_validates_uniqueness_with_newline_chars
Topic.validates_uniqueness_of(:title, :case_sensitive => false)

t = Topic.new("title" => "new\nline")
Expand Down

0 comments on commit 55b5cf5

Please sign in to comment.