fix tests, fixes #1173

This commit is contained in:
albert
2013-04-03 17:23:25 -04:00
parent db7386782e
commit b19994396d
4 changed files with 15 additions and 8 deletions

View File

@@ -23,7 +23,7 @@ class CommentTest < ActiveSupport::TestCase
should "fail creation" do
comment = FactoryGirl.build(:comment)
comment.save
assert_equal(["Creator can not post comments within 1 week of sign up, and can only post 5 comments per hour after that"], comment.errors.full_messages)
assert_equal(["You can not post comments within 1 week of sign up"], comment.errors.full_messages)
end
end