Fix ContextWording

This commit is contained in:
darthjee
2024-07-29 15:57:49 -03:00
parent fe1f0b47b2
commit 3c243fa747
2 changed files with 2 additions and 9 deletions

View File

@@ -6,13 +6,6 @@
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 2
# Configuration parameters: Prefixes, AllowedPatterns.
# Prefixes: when, with, without
RSpec/ContextWording:
Exclude:
- 'spec/app/font_helper/font_spec.rb'
# Offense count: 3
# Configuration parameters: AllowedConstants.
Style/Documentation:

View File

@@ -19,7 +19,7 @@ describe FontHelper::Font do
end
end
context 'where there is already a character' do
context 'when there is already a character' do
let(:character) { build(:character, code: 50) }
it do
@@ -29,7 +29,7 @@ describe FontHelper::Font do
end
end
context 'where there is already the same character' do
context 'when there is already the same character' do
let(:character) { build(:character) }
it do