Skip to content

Commit

Permalink
DEV: Fix spec because of translation change in core (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
gschlager authored Apr 4, 2024
1 parent f15556c commit f2ee714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/models/post_voting_comment_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

expect(post_voting_comment.valid?).to eq(false)
expect(post_voting_comment.errors[:raw]).to eq(
[I18n.t("errors.messages.too_long_validation", max: max, length: raw.length)],
[I18n.t("errors.messages.too_long_validation", count: max, length: raw.length)],
)
end

Expand Down

0 comments on commit f2ee714

Please sign in to comment.