aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_factory_methods.rb
diff options
context:
space:
mode:
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