aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/left_outer_join_association_test.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-04-27 00:27:19 -0700
committerGitHub <noreply@github.com>2017-04-27 00:27:19 -0700
commit5974334aeb23c21100af5bf877b385dbbe762bc6 (patch)
treeb5637d0f48aae2de21bb7c5f790223aefa1eb2ba /activerecord/test/cases/associations/left_outer_join_association_test.rb
parent28cd12c3454338450c6a505ae9997380065367c8 (diff)
parent86e74a083a2412676eb18b634d4623b0b76d1d79 (diff)
downloadrails-5974334aeb23c21100af5bf877b385dbbe762bc6.tar.gz
rails-5974334aeb23c21100af5bf877b385dbbe762bc6.tar.bz2
rails-5974334aeb23c21100af5bf877b385dbbe762bc6.zip
Merge pull request #28899 from kamipo/restore_fixture_author_addresses
Restore `fixtures :author_addresses`
Diffstat (limited to 'activerecord/test/cases/associations/left_outer_join_association_test.rb')
-rw-r--r--activerecord/test/cases/associations/left_outer_join_association_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/left_outer_join_association_test.rb b/activerecord/test/cases/associations/left_outer_join_association_test.rb
index 42dbbad1c8..6d3757f467 100644
--- a/activerecord/test/cases/associations/left_outer_join_association_test.rb
+++ b/activerecord/test/cases/associations/left_outer_join_association_test.rb
@@ -7,7 +7,7 @@ require "models/categorization"
require "models/person"
class LeftOuterJoinAssociationTest < ActiveRecord::TestCase
- fixtures :authors, :essays, :posts, :comments, :categorizations, :people
+ fixtures :authors, :author_addresses, :essays, :posts, :comments, :categorizations, :people
def test_construct_finder_sql_applies_aliases_tables_on_association_conditions
result = Author.left_outer_joins(:thinking_posts, :welcome_posts).to_a