Skip to content

Commit 9597cda

Browse files
committed
okay thanks rubocop
1 parent da27f1c commit 9597cda

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/graphql-docs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rubocop:disable Style/FileName
1+
# rubocop:disable Naming/FileName
22
require 'graphql-docs/helpers'
33
require 'graphql-docs/renderer'
44
require 'graphql-docs/configuration'

test/graphql-docs/graphql-docs_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rubocop:disable Style/FileName
1+
# rubocop:disable Naming/FileName
22
require 'test_helper'
33

44
class GraphQLDocsTest < Minitest::Test

test/graphql-docs/parser_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_it_accepts_schema_class
2828
end
2929

3030
results = GraphQLDocs::Parser.new(schema, {}).parse
31-
assert_equal "test", results[:operation_types][0][:fields][0][:name]
31+
assert_equal 'test', results[:operation_types][0][:fields][0][:name]
3232
assert_equal "Title paragraph.\n ```\n line1\n line2\n line3\n ```", results[:operation_types][0][:fields][0][:description]
3333
end
3434

0 commit comments

Comments
 (0)