diff --git a/test/functional/profile_controller_test.rb b/test/functional/profile_controller_test.rb index 32adc3d..297bcdb 100644 --- a/test/functional/profile_controller_test.rb +++ b/test/functional/profile_controller_test.rb @@ -84,14 +84,14 @@ class ProfileControllerTest < Test::Unit::TestCase assert_no_tag :tag => 'a', :content => 'Join this community' end - should 'dont show enterprises link to enterprise' do + should 'not show enterprises link to enterprise' do ent = Enterprise.create!(:identifier => 'test_enterprise1', :name => 'Test enteprise1') get :index, :profile => ent.identifier assert_tag :tag => 'h2', :content => "#{ent.identifier}'s profile" assert_no_tag :tag => 'a', :content => 'Enterprises', :attributes => { :href => /profile\/#{ent.identifier}\/enterprises$/ } end - should 'dont show members link to person' do + should 'not show members link to person' do person = create_user('person_1').person get :index, :profile => person.identifier assert_tag :tag => 'h2', :content => "#{person.identifier}'s profile" -- libgit2 0.21.2