aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2016-02-12 12:13:59 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2016-02-12 12:13:59 -0800
commitdb9ef08a8da60fe28b64bfa0136e7549d526f24d (patch)
tree0467d2811cd91ee75316c6952dc987eeea2c64c7 /actionview
parent3d7892d4d586d0e128a613855e054625725594e5 (diff)
downloadrails-db9ef08a8da60fe28b64bfa0136e7549d526f24d.tar.gz
rails-db9ef08a8da60fe28b64bfa0136e7549d526f24d.tar.bz2
rails-db9ef08a8da60fe28b64bfa0136e7549d526f24d.zip
the lookup context looks in the cwd, so prefix isn't necessary
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/template/digestor_test.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionview/test/template/digestor_test.rb b/actionview/test/template/digestor_test.rb
index dcc974c2d1..ea86535b2a 100644
--- a/actionview/test/template/digestor_test.rb
+++ b/actionview/test/template/digestor_test.rb
@@ -17,8 +17,7 @@ class FixtureFinder < ActionView::LookupContext
FIXTURES_DIR = "#{File.dirname(__FILE__)}/../fixtures/digestor"
def initialize(details = {})
- prefixes = [FixtureFinder::FIXTURES_DIR]
- super(ActionView::PathSet.new(['digestor']), details, prefixes)
+ super(ActionView::PathSet.new(['digestor']), details, [])
end
end