Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-05-31 16:38:42 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-05-31 16:38:42 +0300
commitf27daddfc67b0c5f4510a59f1180f22e2d16d324 (patch)
tree98147e9e2c9f7d5de10b7892b86e1355f0aeb419 /spec/services/auth
parentb1a21a9986b096b993f0937d6b8d6803accffced (diff)
Fix rubocop offenses
Diffstat (limited to 'spec/services/auth')
-rw-r--r--spec/services/auth/container_registry_authentication_service_spec.rb2
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