diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-12 13:03:04 -0500 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-12 13:03:04 -0500 |
commit | 5c2f2fd2890b7efd7a63f9a371b2f795f2e9fa43 (patch) | |
tree | 473a1f9f2fc6c9d33a968218338815e2d84479af /lib/container_registry/client.rb | |
parent | 4d84ba43d8db6a205e79dd8cf723be7ceebf6925 (diff) | |
download | gitlab-ce-5c2f2fd2890b7efd7a63f9a371b2f795f2e9fa43.tar.gz |
Fix CI tests
Diffstat (limited to 'lib/container_registry/client.rb')
-rw-r--r-- | lib/container_registry/client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container_registry/client.rb b/lib/container_registry/client.rb index 0bfb6baffd4..c250a4b6946 100644 --- a/lib/container_registry/client.rb +++ b/lib/container_registry/client.rb @@ -55,7 +55,7 @@ module ContainerRegistry conn.request :json conn.headers['Accept'] = MANIFEST_VERSION - conn.response :json, :content_type => /\bjson$/ + conn.response :json, content_type: /\bjson$/ if options[:user] && options[:password] conn.request(:basic_auth, options[:user].to_s, options[:password].to_s) |