Commit 825af87955af40846fcd0ab97db0b596ba960f79

Authored by Antonio Terceiro
Committed by Victor Costa
1 parent b1f028a2

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