Commit de60625777cb216672291f175548139a93c275a2

Authored by Antonio Terceiro
1 parent 66f63aa8

AddMemberTest: fix call to unexisting assertion method

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
test/unit/add_member_test.rb
@@ -136,6 +136,6 @@ class AddMemberTest < ActiveSupport::TestCase @@ -136,6 +136,6 @@ class AddMemberTest < ActiveSupport::TestCase
136 136
137 task = AddMember.new(:person => new_person, :organization => community) 137 task = AddMember.new(:person => new_person, :organization => community)
138 138
139 - assert_not_match(/\(#{task.requestor.email}\)/, task.target_notification_description) 139 + assert_no_match(/\(#{task.requestor.email}\)/, task.target_notification_description)
140 end 140 end
141 end 141 end