Skip to content

Commit 7960909

Browse files
dependabot[bot]robbe[bot]robbevp
authored
Bump rubocop from 1.75.2 to 1.75.3 in the rubocop group (#689)
* Bump rubocop from 1.75.2 to 1.75.3 in the rubocop group Bumps the rubocop group with 1 update: [rubocop](https://github.com/rubocop/rubocop). Updates `rubocop` from 1.75.2 to 1.75.3 - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.75.2...v1.75.3) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.75.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: rubocop ... Signed-off-by: dependabot[bot] <support@github.com> * Update gemset.nix * Update rubocop config * Run `lint:fix` * Simplify assertion --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: robbe[bot] <bot@robbevp.be> Co-authored-by: Robbe Van Petegem <git@robbevp.be>
1 parent 76408fe commit 7960909

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require:
1+
plugins:
22
- rubocop-minitest
33
- rubocop-rails
44
- rubocop-performance

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ GEM
199199
mini_portile2 (~> 2.8.2)
200200
racc (~> 1.4)
201201
pagy (9.3.4)
202-
parallel (1.26.3)
203-
parser (3.3.7.4)
202+
parallel (1.27.0)
203+
parser (3.3.8.0)
204204
ast (~> 2.4.1)
205205
racc
206206
pg (1.5.9)
@@ -270,7 +270,7 @@ GEM
270270
reline (0.6.0)
271271
io-console (~> 0.5)
272272
rexml (3.4.1)
273-
rubocop (1.75.2)
273+
rubocop (1.75.3)
274274
json (~> 2.3)
275275
language_server-protocol (~> 3.17.0.2)
276276
lint_roller (~> 1.1.0)
@@ -281,7 +281,7 @@ GEM
281281
rubocop-ast (>= 1.44.0, < 2.0)
282282
ruby-progressbar (~> 1.7)
283283
unicode-display_width (>= 2.4.0, < 4.0)
284-
rubocop-ast (1.44.0)
284+
rubocop-ast (1.44.1)
285285
parser (>= 3.3.7.2)
286286
prism (~> 1.4)
287287
rubocop-minitest (0.38.0)

gemset.nix

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/controllers/subscriptions_controller_test.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ class SubscriptionsControllerTest < ActionDispatch::IntegrationTest
104104
post mark_all_as_read_subscription_url(@subscription)
105105

106106
assert_redirected_to subscription_url(@subscription)
107-
108-
assert_equal((Array.new(5) { true }), (entries.map { |it| it.reload.read? }))
107+
assert(entries.all? { |it| it.reload.read? })
109108
end
110109

111110
# Destroy

0 commit comments

Comments
 (0)