aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_table.rb')
-rw-r--r--test/test_table.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_table.rb b/test/test_table.rb
index 54f8b04b79..129d7ba736 100644
--- a/test/test_table.rb
+++ b/test/test_table.rb
@@ -7,10 +7,9 @@ module Arel
end
it 'should create join nodes' do
- join = @relation.create_string_join 'foo', 'bar'
+ join = @relation.create_string_join 'foo'
assert_kind_of Arel::Nodes::StringJoin, join
assert_equal 'foo', join.left
- assert_equal 'bar', join.right
end
it 'should create join nodes' do