chore: apply rubocop

This commit is contained in:
gabrieljablonski 2025-05-02 19:57:19 -03:00
parent af4ca9d974
commit 413078af19
4 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ class Internal::Accounts::InternalAttributesService
# Update the account
account.internal_attributes = new_attrs
account.save
account.save!
end
# Get manually managed features

View File

@ -42,7 +42,7 @@ RSpec.describe Internal::Accounts::InternalAttributesService do
end
it 'creates internal_attributes hash if it is empty' do
account.update(internal_attributes: {})
account.update!(internal_attributes: {})
# Stub the validation to allow our test key
allow(service).to receive(:validate_key!).and_return(true)
@ -60,7 +60,7 @@ RSpec.describe Internal::Accounts::InternalAttributesService do
end
it 'returns the features when they are set' do
account.update(internal_attributes: { 'manually_managed_features' => %w[feature1 feature2] })
account.update!(internal_attributes: { 'manually_managed_features' => %w[feature1 feature2] })
expect(service.manually_managed_features).to eq(%w[feature1 feature2])
end

View File

@ -183,7 +183,7 @@ RSpec.describe Crm::Leadsquared::Mappers::ConversationMapper do
expect(result.length).to be <= described_class::ACTIVITY_NOTE_MAX_SIZE + 100
# Verify that not all messages are included (some were truncated)
expect(messages.count).to be > result.scan(/John Doe:/).count
expect(messages.count).to be > result.scan('John Doe:').count
end
it 'respects the ACTIVITY_NOTE_MAX_SIZE constant' do

View File

@ -51,7 +51,7 @@ RSpec.describe Crm::Leadsquared::ProcessorService do
context 'when contact has no stored lead ID' do
before do
contact.update(additional_attributes: { 'external' => nil })
contact.update!(additional_attributes: { 'external' => nil })
contact.reload
allow(lead_client).to receive(:create_or_update_lead)