Commit a42fb86d13b3d978c3f8c3c397568656eb3b6e0d
Committed by
Rodrigo Souto
1 parent
eb5062af
Exists in
master
and in
29 other branches
unit_test: correct misspelled words on person_test
ActionItem1011
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
test/unit/person_test.rb
... | ... | @@ -3,7 +3,7 @@ require File.dirname(__FILE__) + '/../test_helper' |
3 | 3 | class PersonTest < ActiveSupport::TestCase |
4 | 4 | fixtures :profiles, :users, :environments |
5 | 5 | |
6 | - def test_person_must_come_form_the_cration_of_an_user | |
6 | + def test_person_must_come_from_the_creation_of_an_user | |
7 | 7 | p = Person.new(:environment => Environment.default, :name => 'John', :identifier => 'john') |
8 | 8 | assert !p.valid? |
9 | 9 | p.user = create_user('john', :email => 'john@doe.org', :password => 'dhoe', :password_confirmation => 'dhoe') | ... | ... |