Commit 2744beda47e31df28e35e28877e0aeb7aaa8de1c
1 parent
c5cb748c
Exists in
master
and in
28 other branches
ActionItem392: s/dont/not/ (typo)
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1797 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
test/functional/profile_controller_test.rb
... | ... | @@ -84,14 +84,14 @@ class ProfileControllerTest < Test::Unit::TestCase |
84 | 84 | assert_no_tag :tag => 'a', :content => 'Join this community' |
85 | 85 | end |
86 | 86 | |
87 | - should 'dont show enterprises link to enterprise' do | |
87 | + should 'not show enterprises link to enterprise' do | |
88 | 88 | ent = Enterprise.create!(:identifier => 'test_enterprise1', :name => 'Test enteprise1') |
89 | 89 | get :index, :profile => ent.identifier |
90 | 90 | assert_tag :tag => 'h2', :content => "#{ent.identifier}'s profile" |
91 | 91 | assert_no_tag :tag => 'a', :content => 'Enterprises', :attributes => { :href => /profile\/#{ent.identifier}\/enterprises$/ } |
92 | 92 | end |
93 | 93 | |
94 | - should 'dont show members link to person' do | |
94 | + should 'not show members link to person' do | |
95 | 95 | person = create_user('person_1').person |
96 | 96 | get :index, :profile => person.identifier |
97 | 97 | assert_tag :tag => 'h2', :content => "#{person.identifier}'s profile" | ... | ... |