Skip to content

Commit 23fd336

Browse files
committed
884: Fix rubocop failure
1 parent c454e79 commit 23fd336

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: ruby/setup-ruby@v1
2222
with:
23-
ruby-version: '3.3'
23+
ruby-version: '4.0'
2424
bundler-cache: true
2525
- run: bundle exec rubocop

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
AllCops:
22
NewCops: enable
3+
SuggestExtensions: false
34

45
plugins:
56
- rubocop-performance

spec/people_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
{
217217
_embedded: {
218218
'osdi:people': [
219-
identifiers: ["action_network:#{person_id}"]
219+
{ identifiers: ["action_network:#{person_id}"] }
220220
]
221221
}
222222
}.to_json
@@ -265,7 +265,7 @@
265265
{
266266
_embedded: {
267267
'osdi:people': [
268-
identifiers: ["action_network:#{person_id}"]
268+
{ identifiers: ["action_network:#{person_id}"] }
269269
]
270270
}
271271
}.to_json

0 commit comments

Comments
 (0)