Commit 825af87955af40846fcd0ab97db0b596ba960f79
Committed by
Victor Costa
1 parent
b1f028a2
Exists in
theme-brasil-digital-from-staging
and in
4 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 | ... | ... |