Skip to content

Commit

Permalink
Merge pull request #6408 from ivankukobko/master
Browse files Browse the repository at this point in the history
Fixed typo in AR test name
  • Loading branch information
carlosantoniodasilva committed May 20, 2012
2 parents 08a5b10 + 45d059b commit 46fcce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/test/cases/relations_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def test_reload
assert topics.loaded?
end

def test_finiding_with_subquery
def test_finding_with_subquery
relation = Topic.where(:approved => true)
assert_equal relation.to_a, Topic.select('*').from(relation).to_a
assert_equal relation.to_a, Topic.select('subquery.*').from(relation).to_a
Expand Down

0 comments on commit 46fcce9

Please sign in to comment.