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.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_factory_methods.rb b/test/test_factory_methods.rb
index 89b10236d1..c40615564f 100644
--- a/test/test_factory_methods.rb
+++ b/test/test_factory_methods.rb
@@ -12,9 +12,9 @@ module Arel
end
def test_create_join
- join = @factory.create_join :one, :two, :three
+ join = @factory.create_join :one, :two
assert_kind_of Nodes::Join, join
- assert_equal :three, join.constraint
+ assert_equal :two, join.constraint
end
def test_create_on