aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2012-02-23 11:36:20 +0400
committerAlexey Vakhov <vakhov@gmail.com>2012-02-23 11:36:20 +0400
commit2b1c85365bc71208a790592472e826f857e5469b (patch)
tree0e5680c7a98e569a3d4563c51a476fd3fcd5a1de /actionpack
parent3f8dc559ecab440b394b89285e6d3579e620e6af (diff)
downloadrails-2b1c85365bc71208a790592472e826f857e5469b.tar.gz
rails-2b1c85365bc71208a790592472e826f857e5469b.tar.bz2
rails-2b1c85365bc71208a790592472e826f857e5469b.zip
Remove unused global variable in controller filters test
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/filters_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb
index 046396b37c..65c853f6eb 100644
--- a/actionpack/test/controller/filters_test.rb
+++ b/actionpack/test/controller/filters_test.rb
@@ -937,9 +937,7 @@ class ControllerWithAllTypesOfFilters < PostsController
end
class ControllerWithTwoLessFilters < ControllerWithAllTypesOfFilters
- $vbf = true
skip_filter :around_again
- $vbf = false
skip_filter :after
end