Skip to content

Commit

Permalink
Fix Rubocop Lint/AssignmentInCondition
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Dec 28, 2022
1 parent 751cf51 commit 2d0121b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Commandline options set through the above environment variables will override se
exit_status = 1
output = ''
Open3.popen3("bundle exec rspec") {|stdin, stdout, stderr, wait_thr|
while line = stdout.gets
while(line = stdout.gets)
puts line
end
output = stdout
Expand Down

0 comments on commit 2d0121b

Please sign in to comment.