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:
authorMatija Čupić <matteeyah@gmail.com>2017-12-16 04:12:44 +0300
committerMatija Čupić <matteeyah@gmail.com>2017-12-16 04:12:44 +0300
commit291480f5e17fea424692f979db91d2ec62d24dbd (patch)
tree01044f8f508cd7888617642ba01dd35948a8ee3e /spec/lib/google_api
parent87f01506cb0f0ba9ee2d7153157b0a07d628a559 (diff)
Properly CamelCase service name
Diffstat (limited to 'spec/lib/google_api')
-rw-r--r--spec/lib/google_api/cloud_platform/client_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/google_api/cloud_platform/client_spec.rb b/spec/lib/google_api/cloud_platform/client_spec.rb
index 2d14c3b1a3a..f65e41dfea3 100644
--- a/spec/lib/google_api/cloud_platform/client_spec.rb
+++ b/spec/lib/google_api/cloud_platform/client_spec.rb
@@ -62,8 +62,8 @@ describe GoogleApi::CloudPlatform::Client do
it { is_expected.to eq(projects) }
end
- def projects_get_billing_info
- subject { client.projects_get_billing_info }
+ describe '#projects_get_billing_info' do
+ subject { client.projects_get_billing_info('project') }
let(:billing_info) { double }
before do