Skip to content

Commit

Permalink
Fix rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusbv committed Jan 17, 2025
1 parent 8a343e6 commit a9be474
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'rails_helper'

# rubocop:disable RSpec/NestedGroups
describe Api::Connect::V3::Subscriptions::SystemsController, type: :request do
describe '#announce_system' do
let(:instance_data) { '<instance_data/>' }
Expand Down Expand Up @@ -60,9 +61,9 @@
allow(Rails.logger).to receive(:error)
stub_request(:post, scc_register_system_url)
.to_return(
status: 201,
body: scc_register_response.to_s,
headers: {}
status: 201,
body: scc_register_response.to_s,
headers: {}
)
end

Expand All @@ -76,3 +77,4 @@
end
end
end
# rubocop:enable RSpec/NestedGroups

0 comments on commit a9be474

Please sign in to comment.