aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_factory_methods.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-12-14 20:31:49 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-12-14 20:31:49 -0800
commitef46276acda7db7b33ee8b84a39cd7d10c3e2628 (patch)
treebb0159ba410a0ae75d15b8fdf27afe1c17472878 /test/test_factory_methods.rb
parenta7507d845a3b560895bbb0df3ce94fa033caa141 (diff)
downloadrails-ef46276acda7db7b33ee8b84a39cd7d10c3e2628.tar.gz
rails-ef46276acda7db7b33ee8b84a39cd7d10c3e2628.tar.bz2
rails-ef46276acda7db7b33ee8b84a39cd7d10c3e2628.zip
cleaning up more nodes
Diffstat (limited to 'test/test_factory_methods.rb')
-rw-r--r--test/test_factory_methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_factory_methods.rb b/test/test_factory_methods.rb
index c40615564f..6506d3c472 100644
--- a/test/test_factory_methods.rb
+++ b/test/test_factory_methods.rb
@@ -14,7 +14,7 @@ module Arel
def test_create_join
join = @factory.create_join :one, :two
assert_kind_of Nodes::Join, join
- assert_equal :two, join.constraint
+ assert_equal :two, join.right
end
def test_create_on