diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-07-29 16:11:48 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-07-29 16:11:48 -0300 |
commit | 6b9004a9f424fdf271fed8b39e7555c44a31b82d (patch) | |
tree | d341e2f7c9154679904457a813e51c195071deb0 /actionpack/test | |
parent | 0c315c75a4bc16ee2e4aa9244e209d1f8aadc295 (diff) | |
download | rails-6b9004a9f424fdf271fed8b39e7555c44a31b82d.tar.gz rails-6b9004a9f424fdf271fed8b39e7555c44a31b82d.tar.bz2 rails-6b9004a9f424fdf271fed8b39e7555c44a31b82d.zip |
Remove deprecation warning, since scoped waas deprecated
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/fixtures/reply.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/fixtures/reply.rb b/actionpack/test/fixtures/reply.rb index 16b53be18a..047522c55b 100644 --- a/actionpack/test/fixtures/reply.rb +++ b/actionpack/test/fixtures/reply.rb @@ -1,5 +1,5 @@ class Reply < ActiveRecord::Base - scope :base, -> { scoped } + scope :base, -> { all } belongs_to :topic, -> { includes(:replies) } belongs_to :developer |