Remove unnecessary cop suppression

The line length was fine here, and plus it was in the wrong namespace
for recent versions of rubocop
This commit is contained in:
Daniel Colson 2020-04-23 19:15:23 -04:00
parent 78662b5010
commit 8bbfca2be8
No known key found for this signature in database
GPG Key ID: 88A364BBE77B1353
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ module FactoryBot
# end
#
# are equivalent.
def method_missing(name, *args, &block) # rubocop:disable Style/MissingRespondToMissing, Style/MethodMissingSuper, Metrics/LineLength
def method_missing(name, *args, &block) # rubocop:disable Style/MissingRespondToMissing, Style/MethodMissingSuper
association_options = args.first
if association_options.nil?