summaryrefslogtreecommitdiff
path: root/spec/graphql/types/project_statistics_type_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/project_statistics_type_spec.rb')
-rw-r--r--spec/graphql/types/project_statistics_type_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/graphql/types/project_statistics_type_spec.rb b/spec/graphql/types/project_statistics_type_spec.rb
index fbea780494b..e6cffd407de 100644
--- a/spec/graphql/types/project_statistics_type_spec.rb
+++ b/spec/graphql/types/project_statistics_type_spec.rb
@@ -2,10 +2,10 @@
require 'spec_helper'
-describe GitlabSchema.types['ProjectStatistics'] do
- it "has all the required fields" do
+RSpec.describe GitlabSchema.types['ProjectStatistics'] do
+ it 'has all the required fields' do
expect(described_class).to have_graphql_fields(:storage_size, :repository_size, :lfs_objects_size,
:build_artifacts_size, :packages_size, :commit_count,
- :wiki_size)
+ :wiki_size, :snippets_size)
end
end