Skip to content

Commit

Permalink
Merge pull request #531 from Crown-Commercial-Service/dependabot/bund…
Browse files Browse the repository at this point in the history
…ler/rubocop-rails-2.21.2

build(deps-dev): bump rubocop-rails from 2.19.1 to 2.21.2
  • Loading branch information
tim-s-ccs authored Oct 4, 2023
2 parents 41c8859 + 10b71d4 commit bcea13f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ group :development, :test do
gem 'rspec-rails', '~> 6.0.3', '>= 6.0.3'
gem 'rubocop', '~> 1.56.4'
gem 'rubocop-performance', '~> 1.19.1'
gem 'rubocop-rails', '~> 2.19.1', '>= 2.19.1'
gem 'rubocop-rails', '~> 2.21.2'
gem 'rubocop-rspec', '~> 2.22.0', '>= 1.43.2' # or gem 'rubocop-minitest'
gem 'brakeman', '~> 6.0.1'
end
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ GEM
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.19.1)
rubocop-rails (2.21.2)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
Expand Down Expand Up @@ -346,7 +346,7 @@ GEM
unf (0.1.4)
unf_ext
unf_ext (0.0.7.7)
unicode-display_width (2.4.2)
unicode-display_width (2.5.0)
web-console (4.2.1)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
Expand Down Expand Up @@ -391,7 +391,7 @@ DEPENDENCIES
rspec-rails (~> 6.0.3, >= 6.0.3)
rubocop (~> 1.56.4)
rubocop-performance (~> 1.19.1)
rubocop-rails (~> 2.19.1, >= 2.19.1)
rubocop-rails (~> 2.21.2)
rubocop-rspec (~> 2.22.0, >= 1.43.2)
simplecov (~> 0.22.0, >= 0.16.1)
spring (~> 4.1.1)
Expand Down
2 changes: 1 addition & 1 deletion spec/services/cognito/confirm_password_reset_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
end

context 'and it has been pwned' do
let(:password) { PwnedPassword.all.pluck(:password).sample }
let(:password) { PwnedPassword.pluck(:password).sample }

it 'is not valid' do
expect(confirm_password_reset.valid?).to be false
Expand Down
2 changes: 1 addition & 1 deletion spec/services/cognito/sign_up_user_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
end

context 'and it has been pwned' do
let(:password) { PwnedPassword.all.pluck(:password).sample }
let(:password) { PwnedPassword.pluck(:password).sample }

it 'is not valid' do
expect(sign_up_user.valid?).to be false
Expand Down

0 comments on commit bcea13f

Please sign in to comment.