DEV: Fix build.

This commit is contained in:
Dan Ungureanu 2019-03-08 12:44:54 +02:00
parent e2510d79cc
commit 3474701146
No known key found for this signature in database
GPG Key ID: 0AA2A00D6ACC8B84

View File

@ -1278,7 +1278,7 @@ describe PostCreator do
old_post = Fabricate(:post, user: returning_user, created_at: 31.days.ago)
post = PostCreator.create(returning_user, title: "this is a returning topic", raw: "this is a post")
expect(post.custom_fields["post_notice_type"]).to eq("returning")
expect(post.custom_fields["post_notice_time"]).to eq(old_post.created_at.to_s)
expect(post.custom_fields["post_notice_time"]).to eq(old_post.created_at.iso8601)
end
it "does not generate post notices" do