about summary refs log tree commit diff
path: root/spec/models/report_spec.rb
diff options
context:
space:
mode:
authorYusuke Nakamura <unasuke@users.noreply.github.com>2019-08-06 22:33:03 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-08-06 15:33:03 +0200
commit82d2069c75071138f582503c39b0996cc4cdff11 (patch)
tree000e5ea8e1c085fa0c19b5113b8983ec93e8ce46 /spec/models/report_spec.rb
parent1d8d553d8b5cb23cc67bd530ca9eb70a6683ab2a (diff)
Bump faker from 1.9.6 to 2.1.0 and update faker api (#11489)
* Bump faker from 1.9.6 to 2.1.0

Bumps [faker](https://github.com/stympy/faker) from 1.9.6 to 2.1.0.
- [Release notes](https://github.com/stympy/faker/releases)
- [Changelog](https://github.com/stympy/faker/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stympy/faker/compare/1.9.6...v2.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Use faker api v2

https://github.com/stympy/faker/releases/tag/2.0
Diffstat (limited to 'spec/models/report_spec.rb')
-rw-r--r--spec/models/report_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/report_spec.rb b/spec/models/report_spec.rb
index a0cd0800d..312954c9d 100644
--- a/spec/models/report_spec.rb
+++ b/spec/models/report_spec.rb
@@ -125,7 +125,7 @@ describe Report do
     end
 
     it 'is invalid if comment is longer than 1000 characters' do
-      report = Fabricate.build(:report, comment: Faker::Lorem.characters(1001))
+      report = Fabricate.build(:report, comment: Faker::Lorem.characters(number: 1001))
       report.valid?
       expect(report).to model_have_error_on_field(:comment)
     end