diff options
Diffstat (limited to 'lib/bitbucket/connection.rb')
-rw-r--r-- | lib/bitbucket/connection.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bitbucket/connection.rb b/lib/bitbucket/connection.rb index 0041634f9e3..dd7f4e579f6 100644 --- a/lib/bitbucket/connection.rb +++ b/lib/bitbucket/connection.rb @@ -2,8 +2,8 @@ module Bitbucket class Connection - DEFAULT_API_VERSION = '2.0'.freeze - DEFAULT_BASE_URI = 'https://api.bitbucket.org/'.freeze + DEFAULT_API_VERSION = "2.0" + DEFAULT_BASE_URI = "https://api.bitbucket.org/" DEFAULT_QUERY = {}.freeze attr_reader :expires_at, :expires_in, :refresh_token, :token @@ -59,7 +59,7 @@ module Bitbucket end def provider - Gitlab::Auth::OAuth::Provider.config_for('bitbucket') + Gitlab::Auth::OAuth::Provider.config_for("bitbucket") end def options |