aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/html-scanner/text_node_test.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-01-05 17:01:45 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-01-05 17:05:44 -0800
commitfd918fe5eda59e2ab081662827fc87868e6b70f2 (patch)
tree6d10560ea9313929f04943397ad4f0740075eaa9 /actionpack/test/template/html-scanner/text_node_test.rb
parent5d09d395dee38e2bdd182fd117f20917dab30d48 (diff)
downloadrails-fd918fe5eda59e2ab081662827fc87868e6b70f2.tar.gz
rails-fd918fe5eda59e2ab081662827fc87868e6b70f2.tar.bz2
rails-fd918fe5eda59e2ab081662827fc87868e6b70f2.zip
AP tests should inherit from AS::TestCase
Diffstat (limited to 'actionpack/test/template/html-scanner/text_node_test.rb')
-rw-r--r--actionpack/test/template/html-scanner/text_node_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/html-scanner/text_node_test.rb b/actionpack/test/template/html-scanner/text_node_test.rb
index 6f61253ffa..cbcb9e78f0 100644
--- a/actionpack/test/template/html-scanner/text_node_test.rb
+++ b/actionpack/test/template/html-scanner/text_node_test.rb
@@ -1,6 +1,6 @@
require 'abstract_unit'
-class TextNodeTest < Test::Unit::TestCase
+class TextNodeTest < ActiveSupport::TestCase
def setup
@node = HTML::Text.new(nil, 0, 0, "hello, howdy, aloha, annyeong")
end