Commit de60625777cb216672291f175548139a93c275a2
1 parent
66f63aa8
Exists in
master
and in
20 other branches
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 | 136 | |
137 | 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 | 140 | end |
141 | 141 | end | ... | ... |