Skip to content

Commit

Permalink
okay thanks rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
gjtorikian committed May 11, 2018
1 parent da27f1c commit 9597cda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/graphql-docs.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rubocop:disable Style/FileName
# rubocop:disable Naming/FileName
require 'graphql-docs/helpers'
require 'graphql-docs/renderer'
require 'graphql-docs/configuration'
Expand Down
2 changes: 1 addition & 1 deletion test/graphql-docs/graphql-docs_test.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rubocop:disable Style/FileName
# rubocop:disable Naming/FileName
require 'test_helper'

class GraphQLDocsTest < Minitest::Test
Expand Down
2 changes: 1 addition & 1 deletion test/graphql-docs/parser_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_it_accepts_schema_class
end

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

Expand Down

0 comments on commit 9597cda

Please sign in to comment.