diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 2d540c9..f8a85ec 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,6 +1,6 @@ # This configuration was generated by # `rubocop --auto-gen-config --exclude-limit 180` -# on 2023-04-20 23:33:11 UTC using RuboCop version 1.50.2. +# on 2023-05-11 23:33:16 UTC using RuboCop version 1.50.2. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new @@ -51,14 +51,6 @@ Layout/SpaceAroundEqualsInParameterDefault: Exclude: - 'lib/dispatch-rider/publisher/configuration/destination.rb' -# Offense count: 1 -# This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator. -# SupportedStylesForExponentOperator: space, no_space -Layout/SpaceAroundOperators: - Exclude: - - 'spec/lib/dispatch-rider/queue_services/aws_sqs_spec.rb' - # Offense count: 4 # This cop supports safe autocorrection (--autocorrect). # Configuration parameters: EnforcedStyle. diff --git a/spec/lib/dispatch-rider/queue_services/aws_sqs_spec.rb b/spec/lib/dispatch-rider/queue_services/aws_sqs_spec.rb index 297000e..ac74eb0 100644 --- a/spec/lib/dispatch-rider/queue_services/aws_sqs_spec.rb +++ b/spec/lib/dispatch-rider/queue_services/aws_sqs_spec.rb @@ -15,7 +15,7 @@ allow_any_instance_of(Aws::SQS::Client).to receive(:get_queue_attributes).and_return( OpenStruct.new( { - attributes: { "VisibilityTimeout"=>visibility_timeout } + attributes: { "VisibilityTimeout" => visibility_timeout } } ) )