1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Removed space and unused class

This commit is contained in:
Anupam Choudhury 2013-04-06 02:35:15 +05:30
parent 220887eeab
commit 8ed04e90d2
2 changed files with 1 additions and 2 deletions

View file

@ -245,7 +245,6 @@ class AssociationProxyTest < ActiveRecord::TestCase
end
class OverridingAssociationsTest < ActiveRecord::TestCase
class Person < ActiveRecord::Base; end
class DifferentPerson < ActiveRecord::Base; end
class PeopleList < ActiveRecord::Base

View file

@ -69,7 +69,7 @@ class AttributeMethodsTest < ActiveRecord::TestCase
end
def test_boolean_attributes
assert ! Topic.find(1).approved?
assert !Topic.find(1).approved?
assert Topic.find(2).approved?
end