aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/testing
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-11-04 12:07:06 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-11-04 12:07:06 -0200
commit5cdeb5ef7db1bab944ff0ee2d64c6c896758bac6 (patch)
treeb5caaba8c2ff1b7f6db7c9485c52db947e144957 /activesupport/test/testing
parentb1fe78e0cb81d6d291b982927353c4fa39d8e269 (diff)
downloadrails-5cdeb5ef7db1bab944ff0ee2d64c6c896758bac6.tar.gz
rails-5cdeb5ef7db1bab944ff0ee2d64c6c896758bac6.tar.bz2
rails-5cdeb5ef7db1bab944ff0ee2d64c6c896758bac6.zip
Fix typo in test name
Diffstat (limited to 'activesupport/test/testing')
-rw-r--r--activesupport/test/testing/constant_lookup_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/testing/constant_lookup_test.rb b/activesupport/test/testing/constant_lookup_test.rb
index c56c032cde..19280ba74a 100644
--- a/activesupport/test/testing/constant_lookup_test.rb
+++ b/activesupport/test/testing/constant_lookup_test.rb
@@ -1,7 +1,7 @@
require 'abstract_unit'
class Foo; end
-class Bar < Foo;
+class Bar < Foo
def index; end
def self.index; end
end