Skip to content

Commit

Permalink
rubocop fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyBen committed Jul 25, 2023
1 parent b9de336 commit 92c98eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/spec_mixin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ def capture_output
end
end

def interactive(*args, &block)
def interactive(...)
if ENV['DEBUG'] == '2'
# :nocov:
interactive!(*args, &block)
interactive!(...)
# :nocov:
else
capture_output { interactive!(*args, &block) }
capture_output { interactive!(...) }
end
end

Expand Down

0 comments on commit 92c98eb

Please sign in to comment.