diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-31 15:38:42 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-31 15:38:42 +0200 |
commit | f27daddfc67b0c5f4510a59f1180f22e2d16d324 (patch) | |
tree | 98147e9e2c9f7d5de10b7892b86e1355f0aeb419 | |
parent | b1a21a9986b096b993f0937d6b8d6803accffced (diff) | |
download | gitlab-ce-f27daddfc67b0c5f4510a59f1180f22e2d16d324.tar.gz |
Fix rubocop offenses
-rw-r--r-- | spec/services/auth/container_registry_authentication_service_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/auth/container_registry_authentication_service_spec.rb b/spec/services/auth/container_registry_authentication_service_spec.rb index 647731addc4..67777ad48bc 100644 --- a/spec/services/auth/container_registry_authentication_service_spec.rb +++ b/spec/services/auth/container_registry_authentication_service_spec.rb @@ -23,7 +23,7 @@ describe Auth::ContainerRegistryAuthenticationService, services: true do let(:expire_delay) { 10 } context 'for default configuration' do - it { expect(expires_at).to_not be_within(2.seconds).of(Time.now + expire_delay.minutes) } + it { expect(expires_at).not_to be_within(2.seconds).of(Time.now + expire_delay.minutes) } end context 'for changed configuration' do |